nrfxlib API 2.8.99
|
Module implementing simple FIFO queue. More...
#include <nrf_802154_queue.h>
Data Fields | |
void * | p_memory |
Pointer to items memory of the queue. | |
uint8_t | item_size |
Size of an item in the queue. | |
uint8_t | capacity |
Maximum number of items that can be stored in the memory of the queue. | |
volatile uint8_t | wridx |
Index in the items memory of the queue where next item is written. | |
volatile uint8_t | rdidx |
Index in the items memory of the queue where next item is read. | |
Module implementing simple FIFO queue.
Type representing a FIFO queue.