FreeRTOS
QueuePointers
is only used within FreeRTOS.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
Raspberry Pi Pico SDK and Examples
FreeRTOS
QueuePointers
QueuePointers struct
Syntax
Show:
Summary
Declaration
from
queue.c:68
typedef
struct
QueuePointers
{
int8_t
*
pcTail
;
int8_t
*
pcReadFrom
;
}
QueuePointers_t
;
Fields
Field
Declared as
Description
QueuePointers::pcTail
int8_t
*
Points to the byte at the end of the queue storage area. Once more byte is allocated than necessary to store the queue items, this is used as a marker.
QueuePointers::pcReadFrom
int8_t
*
Points to the last place that a queued item was read from when the structure is used as a queue.
Examples
References
from
examples
Code
Location
Referrer
typedef
struct
QueuePointers
queue.c:68
}
QueuePointers_t
;
queue.c:72
QueuePointers_t
QueuePointers_t
xQueue
;
/**< Data required exclusively when this structure is used as a queue. */
queue.c:110
QueueDefinition::
::xQueue
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
All items filtered out
All items filtered out
Class Tree
from
examples
All items filtered out
All items filtered out
Override Tree
from
examples
All items filtered out
All items filtered out
Implementations
from
examples
All items filtered out
All items filtered out
Instances
from
examples
Instance
Scope
Location
Project
QueueDefinition::
::xQueue
queue.c:110
Lifecycle
from
examples
All items filtered out
All items filtered out