forked from gary/BCU
2
0
Fork 0
BCU/library/bsp/bsp_queue.c

132 lines
3.2 KiB
C
Raw Normal View History

2025-02-06 15:08:48 +08:00
#include "bsp_queue.h"
#include "kit_data.h"
#include "kit_debug.h"
//首先获取队列地址,调用函数利用地址进行数据填充
kit_ret_e bsp_queue_push_pointer(QueueItem* item, void **prt)
{
uint32_t tmp;
kit_ret_e res = kKit_Ret_ParamErr;
KIT_ASSERT_PARAM((item != NULL) && (prt != NULL));
if((item != NULL) && (prt != NULL))
{
tmp = (item->push_index + 1) % item->max_cnt;
if (tmp != item->pop_index)
{
*prt = item->buf + (item->push_index * item->cell_len);
item->push_index = tmp;
res = kKit_Ret_Ok;
}
else
{
res = kKit_Ret_OutRange;
}
}
KIT_ASSERT_RES(0, res);
return res;
}
kit_ret_e bsp_queue_pop_pointer(QueueItem* item, void **prt)
{
kit_ret_e res = kKit_Ret_ParamErr;
KIT_ASSERT_PARAM((item != NULL) && (prt != NULL));
if((item != NULL) && (prt != NULL))
{
if (item->push_index != item->pop_index)
{
*prt = item->buf + (item->pop_index * item->cell_len);
item->pop_index = (item->pop_index + 1)%item->max_cnt;
res = kKit_Ret_Ok;
}
else
{
res = kKit_Ret_Null;
}
}
return res;
}
/*****************************************************************************
*:PushEmsCanFrameToQueue
*:CAN数据帧压入队列
* :const CanMsg* msg
* :CAN_OK表示成功,
*:
******************************************************************************/
kit_ret_e bsp_queue_push_instance(QueueItem* item, uint8_t *ins)
{
void *prt;
kit_ret_e res = kKit_Ret_ParamErr;
KIT_ASSERT_PARAM((item != NULL) && (ins != NULL));
if((item != NULL) && (ins != NULL))
{
res = bsp_queue_push_pointer(item, &prt);
if(res == kKit_Ret_Ok)
{
kit_copy_buf(prt, ins, item->cell_len);
}
}
return res;
}
/*****************************************************************************
*:PopEmsCanFrameFromQueue
*:CAN数据帧弹出队列
* :CanMsg* msg
* :CAN_OK表示成功,
*:
******************************************************************************/
kit_ret_e bsp_queue_pop_instance(QueueItem* item, uint8_t *ins)
{
void *prt;
kit_ret_e res = kKit_Ret_ParamErr;
KIT_ASSERT_PARAM((item != NULL) && (ins != NULL));
if((item != NULL) && (ins != NULL))
{
res = bsp_queue_pop_pointer(item, &prt);
if(res == kKit_Ret_Ok)
{
kit_copy_buf(ins, prt, item->cell_len);
}
}
return res;
}
bool bsp_queue_is_empty(QueueItem* item)
{
bool res = false;
KIT_ASSERT_PARAM(item != NULL);
if(item != NULL)
{
res = (item->push_index == item->pop_index);
}
return res;
}
bool bsp_queue_is_full(QueueItem* item)
{
bool res = false;
KIT_ASSERT_PARAM(item != NULL);
if(item != NULL)
{
res = (((item->push_index + 1) % item->max_cnt) == item->pop_index);
}
return res;
}