FreeRTOS + 0/1 examples
SourceVu will show references to QueueDefinition from the following samples and libraries:
 
Symbols
loading...
Files
loading...
SummarySyntaxRelatedExamplesReferencesInstancesLifecycle

Fields

Field
Declared as
Description
int8_t *
Points to the beginning of the queue storage area.
int8_t *
Points to the free next place in the storage area.
List of tasks that are blocked waiting to post onto this queue. Stored in priority order.
List of tasks that are blocked waiting to read from this queue. Stored in priority order.
volatile UBaseType_t
The number of items currently in the queue.
The length of the queue defined as the number of items it will hold, not the number of bytes.
The size of each items that the queue will hold.
volatile int8_t
Stores the number of items received from the queue (removed from the queue) while the queue was locked. Set to queueUNLOCKED when the queue is not locked.
volatile int8_t
Stores the number of items transmitted to the queue (added to the queue) while the queue was locked. Set to queueUNLOCKED when the queue is not locked.
struct QueueDefinition *
uint8_t

References

from 0/1 examples