threadx
txfr_queue
is only used within threadx.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Related
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
STM32 Libraries and Samples
threadx
txfr_queue
txfr_queue struct
Syntax
Show:
Summary
Declaration
from
FreeRTOS.h:203
typedef
struct
txfr_queue
{
ULONG
id
;
uint8_t
allocated
;
txfr_queueset_t
*
p_set
;
uint8_t
*
p_mem
;
TX_SEMAPHORE
read_sem
;
TX_SEMAPHORE
write_sem
;
uint8_t
*
p_write
;
uint8_t
*
p_read
;
UBaseType_t
queue_length
;
UBaseType_t
msg_size
;
}
txfr_queue_t
;
Fields
Field
Declared as
txfr_queue::id
ULONG
txfr_queue::allocated
uint8_t
txfr_queue::p_set
txfr_queueset_t
*
txfr_queue::p_mem
uint8_t
*
txfr_queue::read_sem
TX_SEMAPHORE
txfr_queue::write_sem
TX_SEMAPHORE
txfr_queue::p_write
uint8_t
*
txfr_queue::p_read
uint8_t
*
txfr_queue::queue_length
UBaseType_t
txfr_queue::msg_size
UBaseType_t
Related Functions
Found 20 other functions taking a
txfr_queue
argument:
Function
vQueueDelete()
xQueueReceive()
xQueueReceiveFromISR()
uxQueueMessagesWaiting()
xQueuePeek()
uxQueueSpacesAvailable()
uxQueueMessagesWaitingFromISR()
xQueueSend()
xQueuePeekFromISR()
xQueueIsQueueEmptyFromISR()
xQueueIsQueueFullFromISR()
xQueueSendToFront()
xQueueOverwrite()
xQueueOverwriteFromISR()
xQueueCreateStatic()
xQueueSendFromISR()
xQueueSendToBack()
xQueueSendToBackFromISR()
xQueueSendToFrontFromISR()
xQueueReset()
Examples
References
from
examples
Code
Location
Scope
Referrer
typedef
struct
txfr_queue
{
FreeRTOS.h:203
}
txfr_queue_t
;
FreeRTOS.h:214
typedef
txfr_queue_t
*
QueueHandle_t
;
FreeRTOS.h:216
typedef
txfr_queue_t
StaticQueue_t
;
FreeRTOS.h:217
}
txfr_queue_t
;
FreeRTOS.h:214
txfr_queue_t
typedef
txfr_queue_t
*
QueueHandle_t
;
FreeRTOS.h:216
QueueHandle_t
typedef
txfr_queue_t
StaticQueue_t
;
FreeRTOS.h:217
StaticQueue_t
QueueHandle_t
xQueueCreate
(
UBaseType_t
uxQueueLength
,
UBaseType_t
uxItemSize
)
;
FreeRTOS.h:484
xQueueCreate()
QueueHandle_t
xQueueCreateStatic
(
UBaseType_t
uxQueueLength
,
FreeRTOS.h:486
xQueueCreateStatic()
StaticQueue_t
*
pxQueueBuffer
)
;
FreeRTOS.h:489
xQueueCreateStatic()
xQueueCreateStatic()::pxQueueBuffer
void
vQueueDelete
(
QueueHandle_t
xQueue
)
;
FreeRTOS.h:491
vQueueDelete()
vQueueDelete()::xQueue
BaseType_t
xQueueSend
(
QueueHandle_t
xQueue
,
FreeRTOS.h:493
xQueueSend()
xQueueSend()::xQueue
BaseType_t
xQueueSendFromISR
(
QueueHandle_t
xQueue
,
FreeRTOS.h:497
xQueueSendFromISR()
xQueueSendFromISR()::xQueue
BaseType_t
xQueueSendToBack
(
QueueHandle_t
xQueue
,
FreeRTOS.h:501
xQueueSendToBack()
xQueueSendToBack()::xQueue
BaseType_t
xQueueSendToBackFromISR
(
QueueHandle_t
xQueue
,
FreeRTOS.h:505
xQueueSendToBackFromISR()
xQueueSendToBackFromISR()::xQueue
BaseType_t
xQueueSendToFront
(
QueueHandle_t
xQueue
,
FreeRTOS.h:509
xQueueSendToFront()
xQueueSendToFront()::xQueue
BaseType_t
xQueueSendToFrontFromISR
(
QueueHandle_t
xQueue
,
FreeRTOS.h:513
xQueueSendToFrontFromISR()
xQueueSendToFrontFromISR()::xQueue
BaseType_t
xQueueReceive
(
QueueHandle_t
xQueue
,
FreeRTOS.h:517
xQueueReceive()
xQueueReceive()::xQueue
BaseType_t
xQueueReceiveFromISR
(
QueueHandle_t
xQueue
,
FreeRTOS.h:521
xQueueReceiveFromISR()
xQueueReceiveFromISR()::xQueue
BaseType_t
xQueuePeek
(
QueueHandle_t
xQueue
,
FreeRTOS.h:525
xQueuePeek()
xQueuePeek()::xQueue
BaseType_t
xQueuePeekFromISR
(
QueueHandle_t
xQueue
,
FreeRTOS.h:529
xQueuePeekFromISR()
xQueuePeekFromISR()::xQueue
UBaseType_t
uxQueueMessagesWaiting
(
QueueHandle_t
xQueue
)
;
FreeRTOS.h:532
uxQueueMessagesWaiting()
uxQueueMessagesWaiting()::xQueue
UBaseType_t
uxQueueMessagesWaitingFromISR
(
QueueHandle_t
xQueue
)
;
FreeRTOS.h:534
uxQueueMessagesWaitingFromISR()
uxQueueMessagesWaitingFromISR()::xQueue
UBaseType_t
uxQueueSpacesAvailable
(
QueueHandle_t
xQueue
)
;
FreeRTOS.h:536
uxQueueSpacesAvailable()
uxQueueSpacesAvailable()::xQueue
BaseType_t
xQueueIsQueueEmptyFromISR
(
const
QueueHandle_t
xQueue
)
;
FreeRTOS.h:538
xQueueIsQueueEmptyFromISR()
xQueueIsQueueEmptyFromISR()::xQueue
BaseType_t
xQueueIsQueueFullFromISR
(
const
QueueHandle_t
xQueue
)
;
FreeRTOS.h:540
xQueueIsQueueFullFromISR()
xQueueIsQueueFullFromISR()::xQueue
BaseType_t
xQueueReset
(
QueueHandle_t
xQueue
)
;
FreeRTOS.h:542
xQueueReset()
xQueueReset()::xQueue
BaseType_t
xQueueOverwrite
(
QueueHandle_t
xQueue
,
FreeRTOS.h:544
xQueueOverwrite()
xQueueOverwrite()::xQueue
BaseType_t
xQueueOverwriteFromISR
(
QueueHandle_t
xQueue
,
FreeRTOS.h:547
xQueueOverwriteFromISR()
xQueueOverwriteFromISR()::xQueue
QueueHandle_t
xQueueCreateStatic
(
UBaseType_t
uxQueueLength
,
tx_freertos.c:1443
xQueueCreateStatic()
StaticQueue_t
*
pxQueueBuffer
)
tx_freertos.c:1446
xQueueCreateStatic()
xQueueCreateStatic()::pxQueueBuffer
QueueHandle_t
xQueueCreate
(
UBaseType_t
uxQueueLength
,
UBaseType_t
uxItemSize
)
tx_freertos.c:1486
xQueueCreate()
txfr_queue_t
*
p_queue
;
tx_freertos.c:1488
xQueueCreate()
p_queue
=
txfr_malloc
(
sizeof
(
txfr_queue_t
)
)
;
tx_freertos.c:1502
xQueueCreate()
void
vQueueDelete
(
QueueHandle_t
xQueue
)
tx_freertos.c:1539
vQueueDelete()
vQueueDelete()::xQueue
vPortFree
(
xQueue
)
;
tx_freertos.c:1557
vQueueDelete()
BaseType_t
xQueueSend
(
QueueHandle_t
xQueue
,
tx_freertos.c:1561
xQueueSend()
xQueueSend()::xQueue
BaseType_t
xQueueSendFromISR
(
QueueHandle_t
xQueue
,
tx_freertos.c:1615
xQueueSendFromISR()
xQueueSendFromISR()::xQueue
BaseType_t
xQueueSendToBack
(
QueueHandle_t
xQueue
,
tx_freertos.c:1625
xQueueSendToBack()
xQueueSendToBack()::xQueue
BaseType_t
xQueueSendToBackFromISR
(
QueueHandle_t
xQueue
,
tx_freertos.c:1635
xQueueSendToBackFromISR()
xQueueSendToBackFromISR()::xQueue
BaseType_t
xQueueSendToFront
(
QueueHandle_t
xQueue
,
tx_freertos.c:1645
xQueueSendToFront()
xQueueSendToFront()::xQueue
BaseType_t
xQueueSendToFrontFromISR
(
QueueHandle_t
xQueue
,
tx_freertos.c:1717
xQueueSendToFrontFromISR()
xQueueSendToFrontFromISR()::xQueue
BaseType_t
xQueueReceive
(
QueueHandle_t
xQueue
,
tx_freertos.c:1727
xQueueReceive()
xQueueReceive()::xQueue
BaseType_t
xQueueReceiveFromISR
(
QueueHandle_t
xQueue
,
tx_freertos.c:1770
xQueueReceiveFromISR()
xQueueReceiveFromISR()::xQueue
BaseType_t
xQueuePeek
(
QueueHandle_t
xQueue
,
tx_freertos.c:1784
xQueuePeek()
xQueuePeek()::xQueue
BaseType_t
xQueuePeekFromISR
(
QueueHandle_t
xQueue
,
tx_freertos.c:1826
xQueuePeekFromISR()
xQueuePeekFromISR()::xQueue
UBaseType_t
uxQueueMessagesWaiting
(
QueueHandle_t
xQueue
)
tx_freertos.c:1835
uxQueueMessagesWaiting()
uxQueueMessagesWaiting()::xQueue
UBaseType_t
uxQueueMessagesWaitingFromISR
(
QueueHandle_t
xQueue
)
tx_freertos.c:1851
uxQueueMessagesWaitingFromISR()
uxQueueMessagesWaitingFromISR()::xQueue
UBaseType_t
uxQueueSpacesAvailable
(
QueueHandle_t
xQueue
)
tx_freertos.c:1858
uxQueueSpacesAvailable()
uxQueueSpacesAvailable()::xQueue
BaseType_t
xQueueIsQueueEmptyFromISR
(
const
QueueHandle_t
xQueue
)
tx_freertos.c:1874
xQueueIsQueueEmptyFromISR()
xQueueIsQueueEmptyFromISR()::xQueue
BaseType_t
xQueueIsQueueFullFromISR
(
const
QueueHandle_t
xQueue
)
tx_freertos.c:1894
xQueueIsQueueFullFromISR()
xQueueIsQueueFullFromISR()::xQueue
BaseType_t
xQueueReset
(
QueueHandle_t
xQueue
)
tx_freertos.c:1915
xQueueReset()
xQueueReset()::xQueue
BaseType_t
xQueueOverwrite
(
QueueHandle_t
xQueue
,
tx_freertos.c:1958
xQueueOverwrite()
xQueueOverwrite()::xQueue
BaseType_t
xQueueOverwriteFromISR
(
QueueHandle_t
xQueue
,
tx_freertos.c:2007
xQueueOverwriteFromISR()
xQueueOverwriteFromISR()::xQueue
txfr_queue_t
*
p_queue
;
tx_freertos.c:2694
xQueueAddToSet()
p_queue
=
(
txfr_queue_t
*
)
xQueueOrSemaphore
;
tx_freertos.c:2711
xQueueAddToSet()
txfr_queue_t
*
p_queue
;
tx_freertos.c:2735
xQueueRemoveFromSet()
p_queue
=
(
txfr_queue_t
*
)
xQueueOrSemaphore
;
tx_freertos.c:2754
xQueueRemoveFromSet()
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
return
xQueueCreate()
FreeRTOS.h:484
return
xQueueCreateStatic()
FreeRTOS.h:486
xQueueCreateStatic()::pxQueueBuffer
xQueueCreateStatic()
FreeRTOS.h:489
vQueueDelete()::xQueue
vQueueDelete()
FreeRTOS.h:491
xQueueSend()::xQueue
xQueueSend()
FreeRTOS.h:493
xQueueSendFromISR()::xQueue
xQueueSendFromISR()
FreeRTOS.h:497
xQueueSendToBack()::xQueue
xQueueSendToBack()
FreeRTOS.h:501
xQueueSendToBackFromISR()::xQueue
xQueueSendToBackFromISR()
FreeRTOS.h:505
xQueueSendToFront()::xQueue
xQueueSendToFront()
FreeRTOS.h:509
xQueueSendToFrontFromISR()::xQueue
xQueueSendToFrontFromISR()
FreeRTOS.h:513
xQueueReceive()::xQueue
xQueueReceive()
FreeRTOS.h:517
xQueueReceiveFromISR()::xQueue
xQueueReceiveFromISR()
FreeRTOS.h:521
xQueuePeek()::xQueue
xQueuePeek()
FreeRTOS.h:525
xQueuePeekFromISR()::xQueue
xQueuePeekFromISR()
FreeRTOS.h:529
uxQueueMessagesWaiting()::xQueue
uxQueueMessagesWaiting()
FreeRTOS.h:532
uxQueueMessagesWaitingFromISR()::xQueue
uxQueueMessagesWaitingFromISR()
FreeRTOS.h:534
uxQueueSpacesAvailable()::xQueue
uxQueueSpacesAvailable()
FreeRTOS.h:536
xQueueIsQueueEmptyFromISR()::xQueue
xQueueIsQueueEmptyFromISR()
FreeRTOS.h:538
xQueueIsQueueFullFromISR()::xQueue
xQueueIsQueueFullFromISR()
FreeRTOS.h:540
xQueueReset()::xQueue
xQueueReset()
FreeRTOS.h:542
xQueueOverwrite()::xQueue
xQueueOverwrite()
FreeRTOS.h:544
xQueueOverwriteFromISR()::xQueue
xQueueOverwriteFromISR()
FreeRTOS.h:547
return
xQueueCreateStatic()
tx_freertos.c:1443
xQueueCreateStatic()::pxQueueBuffer
xQueueCreateStatic()
tx_freertos.c:1446
return
xQueueCreate()
tx_freertos.c:1486
vQueueDelete()::xQueue
vQueueDelete()
tx_freertos.c:1539
xQueueSend()::xQueue
xQueueSend()
tx_freertos.c:1561
xQueueSendFromISR()::xQueue
xQueueSendFromISR()
tx_freertos.c:1615
xQueueSendToBack()::xQueue
xQueueSendToBack()
tx_freertos.c:1625
xQueueSendToBackFromISR()::xQueue
xQueueSendToBackFromISR()
tx_freertos.c:1635
xQueueSendToFront()::xQueue
xQueueSendToFront()
tx_freertos.c:1645
xQueueSendToFrontFromISR()::xQueue
xQueueSendToFrontFromISR()
tx_freertos.c:1717
xQueueReceive()::xQueue
xQueueReceive()
tx_freertos.c:1727
xQueueReceiveFromISR()::xQueue
xQueueReceiveFromISR()
tx_freertos.c:1770
xQueuePeek()::xQueue
xQueuePeek()
tx_freertos.c:1784
xQueuePeekFromISR()::xQueue
xQueuePeekFromISR()
tx_freertos.c:1826
uxQueueMessagesWaiting()::xQueue
uxQueueMessagesWaiting()
tx_freertos.c:1835
uxQueueMessagesWaitingFromISR()::xQueue
uxQueueMessagesWaitingFromISR()
tx_freertos.c:1851
uxQueueSpacesAvailable()::xQueue
uxQueueSpacesAvailable()
tx_freertos.c:1858
xQueueIsQueueEmptyFromISR()::xQueue
xQueueIsQueueEmptyFromISR()
tx_freertos.c:1874
xQueueIsQueueFullFromISR()::xQueue
xQueueIsQueueFullFromISR()
tx_freertos.c:1894
xQueueReset()::xQueue
xQueueReset()
tx_freertos.c:1915
xQueueOverwrite()::xQueue
xQueueOverwrite()
tx_freertos.c:1958
xQueueOverwriteFromISR()::xQueue
xQueueOverwriteFromISR()
tx_freertos.c:2007
Lifecycle
from
examples
txfr_queue
is freed by 1 symbol:
All items filtered out
txfr_queue
vQueueDelete()
All items filtered out