queue_send_from_isr_hlevel_wrapper() function
Queue send from isr
Syntax
static int32_t queue_send_from_isr_hlevel_wrapper(void *queue,
void *item,
void *hptw);
Arguments
queue
The queue which will send to
item
The message which will be send
hptw
need do task yield or not
Return value
send success or not There is an issue here: When the queue is full, it may return true but it send fail to the queue, sometimes. But in Bluetooth controller's isr, We don't care about the return value. It only required tp send success when the queue is empty all the time. So, this function meets the requirement.