threadx
txfr_queue::queue_length
is only used within threadx.
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
STM32 Libraries and Samples
threadx
txfr_queue::queue_length
txfr_queue::queue_length field
Syntax
Show:
Summary
Declaration
from
FreeRTOS.h:212
UBaseType_t
queue_length
;
Examples
References
from
examples
Code
Location
Referrer
UBaseType_t
queue_length
;
FreeRTOS.h:212
pxQueueBuffer
->
queue_length
=
uxQueueLength
;
tx_freertos.c:1470
xQueueCreateStatic()
p_queue
->
queue_length
=
uxQueueLength
;
tx_freertos.c:1524
xQueueCreate()
if
(
xQueue
->
p_write
>=
(
xQueue
->
p_mem
+
(
xQueue
->
msg_size
*
(
xQueue
->
queue_length
-
1u
)
)
)
)
{
tx_freertos.c:1587
xQueueSend()
xQueue
->
p_read
=
xQueue
->
p_mem
+
(
xQueue
->
msg_size
*
(
xQueue
->
queue_length
-
1u
)
)
;
tx_freertos.c:1678
xQueueSendToFront()
if
(
xQueue
->
p_read
>=
(
xQueue
->
p_mem
+
(
xQueue
->
msg_size
*
(
xQueue
->
queue_length
-
1u
)
)
)
)
{
tx_freertos.c:1753
xQueueReceive()
if
(
xQueue
->
write_sem
.
tx_semaphore_count
!=
xQueue
->
queue_length
)
{
tx_freertos.c:1935
xQueueReset()
xQueue
->
write_sem
.
tx_semaphore_count
=
xQueue
->
queue_length
-
1u
;
tx_freertos.c:1937
xQueueReset()
p_write_temp
=
(
xQueue
->
p_mem
+
(
xQueue
->
msg_size
*
(
xQueue
->
queue_length
-
1u
)
)
)
;
tx_freertos.c:1976
xQueueOverwrite()
if
(
xQueue
->
p_write
>=
(
xQueue
->
p_mem
+
(
xQueue
->
msg_size
*
(
xQueue
->
queue_length
-
1u
)
)
)
)
{
tx_freertos.c:1984
xQueueOverwrite()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
txfr_queue::queue_length
is written by 2 functions and is read by 5 functions:
xQueueCreateStatic()
xQueueCreate()
All items filtered out
txfr_queue::queue_length
xQueueSend()
xQueueSendToFront()
xQueueReceive()
xQueueReset()
xQueueOverwrite()
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