FreeRTOS
QueueDefinition::uxLength
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
QueueDefinition::uxLength
QueueDefinition::uxLength field
The length of the queue defined as the number of items it will hold, not the number of bytes.
Syntax
Show:
Summary
Declaration
from
queue.c:118
UBaseType_t
uxLength
;
Examples
References
from
examples
Code
Location
Referrer
UBaseType_t
uxLength
;
/**< The length of the queue defined as the number of items it will hold, not the number of bytes. */
queue.c:118
(
pxQueue
->
uxLength
>=
1U
)
&&
queue.c:314
xQueueGenericReset()
(
(
SIZE_MAX
/
pxQueue
->
uxLength
)
>=
pxQueue
->
uxItemSize
)
)
queue.c:316
xQueueGenericReset()
pxQueue
->
u
.
xQueue
.
pcTail
=
pxQueue
->
pcHead
+
(
pxQueue
->
uxLength
*
pxQueue
->
uxItemSize
)
;
queue.c:320
xQueueGenericReset()
pxQueue
->
u
.
xQueue
.
pcReadFrom
=
pxQueue
->
pcHead
+
(
(
pxQueue
->
uxLength
-
1U
)
*
pxQueue
->
uxItemSize
)
;
queue.c:323
xQueueGenericReset()
pxNewQueue
->
uxLength
=
uxQueueLength
;
queue.c:592
prvInitialiseNewQueue()
configASSERT
(
!
(
(
xCopyPosition
==
queueOVERWRITE
)
&&
(
pxQueue
->
uxLength
!=
1
)
)
)
;
queue.c:952
xQueueGenericSend()
if
(
(
pxQueue
->
uxMessagesWaiting
<
pxQueue
->
uxLength
)
||
(
xCopyPosition
==
queueOVERWRITE
)
)
queue.c:967
xQueueGenericSend()
configASSERT
(
!
(
(
xCopyPosition
==
queueOVERWRITE
)
&&
(
pxQueue
->
uxLength
!=
1
)
)
)
;
queue.c:1170
xQueueGenericSendFromISR()
if
(
(
pxQueue
->
uxMessagesWaiting
<
pxQueue
->
uxLength
)
||
(
xCopyPosition
==
queueOVERWRITE
)
)
queue.c:1198
xQueueGenericSendFromISR()
if
(
uxMessagesWaiting
<
pxQueue
->
uxLength
)
queue.c:1381
xQueueGiveFromISR()
uxReturn
=
(
UBaseType_t
)
(
pxQueue
->
uxLength
-
pxQueue
->
uxMessagesWaiting
)
;
queue.c:2228
uxQueueSpacesAvailable()
return
(
(
Queue_t
*
)
xQueue
)
->
uxLength
;
queue.c:2359
uxQueueGetQueueLength()
if
(
pxQueue
->
uxMessagesWaiting
==
pxQueue
->
uxLength
)
queue.c:2665
prvIsQueueFull()
if
(
pxQueue
->
uxMessagesWaiting
==
pxQueue
->
uxLength
)
queue.c:2689
xQueueIsQueueFullFromISR()
configASSERT
(
pxQueueSetContainer
->
uxMessagesWaiting
<
pxQueueSetContainer
->
uxLength
)
;
queue.c:3321
prvNotifyQueueSetContainer()
if
(
pxQueueSetContainer
->
uxMessagesWaiting
<
pxQueueSetContainer
->
uxLength
)
queue.c:3323
prvNotifyQueueSetContainer()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
QueueDefinition::uxLength
is written by 1 function and is read by 9 functions:
prvInitialiseNewQueue()
All items filtered out
QueueDefinition::uxLength
xQueueGenericReset()
xQueueGenericSend()
xQueueGenericSendFromISR()
xQueueGiveFromISR()
uxQueueSpacesAvailable()
uxQueueGetQueueLength()
prvIsQueueFull()
xQueueIsQueueFullFromISR()
prvNotifyQueueSetContainer()
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
Lifecycle
from
examples
All items filtered out
All items filtered out