threadx
+
0
/1 examples
SourceVu will show references to
BaseType_t
from the following samples and libraries:
Examples
STM32F429ZI-Nucleo
Applications
ThreadX
Tx_FreeRTOS_Wrapper
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
BaseType_t
BaseType_t
Syntax
Show:
Summary
Declaration
from
FreeRTOS.h:114
typedef
LONG
BaseType_t
;
Examples
BaseType_t
is referenced by 1 libraries and example projects:
Examples
STM32F429ZI-Nucleo
Applications
ThreadX
Tx_FreeRTOS_Wrapper
References
from
0/1
examples
Code
Location
Scope
Referrer
typedef
LONG
BaseType_t
;
FreeRTOS.h:114
BaseType_t
xTaskGetSchedulerState
(
void
)
;
FreeRTOS.h:334
xTaskGetSchedulerState()
BaseType_t
xTaskResumeAll
(
void
)
;
FreeRTOS.h:338
xTaskResumeAll()
BaseType_t
xTaskCreate
(
TaskFunction_t
pvTaskCode
,
FreeRTOS.h:348
xTaskCreate()
BaseType_t
xTaskResumeFromISR
(
TaskHandle_t
xTaskToResume
)
;
FreeRTOS.h:369
xTaskResumeFromISR()
BaseType_t
xTaskAbortDelay
(
TaskHandle_t
xTask
)
;
FreeRTOS.h:371
xTaskAbortDelay()
BaseType_t
xTaskNotifyGive
(
TaskHandle_t
xTaskToNotify
)
;
FreeRTOS.h:391
xTaskNotifyGive()
BaseType_t
*
pxHigherPriorityTaskWoken
)
;
FreeRTOS.h:394
vTaskNotifyGiveFromISR()
vTaskNotifyGiveFromISR()::pxHigherPriorityTaskWoken
uint32_t
ulTaskNotifyTake
(
BaseType_t
xClearCountOnExit
,
FreeRTOS.h:396
ulTaskNotifyTake()
ulTaskNotifyTake()::xClearCountOnExit
BaseType_t
xTaskNotifyWait
(
uint32_t
ulBitsToClearOnEntry
,
FreeRTOS.h:399
xTaskNotifyWait()
BaseType_t
xTaskNotify
(
TaskHandle_t
xTaskToNotify
,
FreeRTOS.h:404
xTaskNotify()
BaseType_t
xTaskNotifyFromISR
(
TaskHandle_t
xTaskToNotify
,
FreeRTOS.h:408
xTaskNotifyFromISR()
BaseType_t
*
pxHigherPriorityTaskWoken
)
;
FreeRTOS.h:411
xTaskNotifyFromISR()
xTaskNotifyFromISR()::pxHigherPriorityTaskWoken
BaseType_t
xTaskNotifyAndQuery
(
TaskHandle_t
xTaskToNotify
,
FreeRTOS.h:413
xTaskNotifyAndQuery()
BaseType_t
xTaskNotifyAndQueryFromISR
(
TaskHandle_t
xTaskToNotify
,
FreeRTOS.h:420
xTaskNotifyAndQueryFromISR()
BaseType_t
*
pxHigherPriorityTaskWoken
)
;
FreeRTOS.h:424
xTaskNotifyAndQueryFromISR()
xTaskNotifyAndQueryFromISR()::pxHigherPriorityTaskWoken
BaseType_t
xTaskNotifyStateClear
(
TaskHandle_t
xTask
)
;
FreeRTOS.h:428
xTaskNotifyStateClear()
BaseType_t
xSemaphoreTake
(
SemaphoreHandle_t
xSemaphore
,
TickType_t
xTicksToWait
)
;
FreeRTOS.h:462
xSemaphoreTake()
BaseType_t
xSemaphoreTakeFromISR
(
SemaphoreHandle_t
xSemaphore
,
BaseType_t
*
pxHigherPriorityTaskWoken
)
;
FreeRTOS.h:464
xSemaphoreTakeFromISR()
BaseType_t
xSemaphoreTakeRecursive
(
SemaphoreHandle_t
xMutex
,
TickType_t
xTicksToWait
)
;
FreeRTOS.h:466
xSemaphoreTakeRecursive()
BaseType_t
xSemaphoreGive
(
SemaphoreHandle_t
xSemaphore
)
;
FreeRTOS.h:468
xSemaphoreGive()
BaseType_t
xSemaphoreGiveFromISR
(
SemaphoreHandle_t
xSemaphore
,
BaseType_t
*
pxHigherPriorityTaskWoken
)
;
FreeRTOS.h:470
xSemaphoreGiveFromISR()
BaseType_t
xSemaphoreGiveRecursive
(
SemaphoreHandle_t
xMutex
)
;
FreeRTOS.h:472
xSemaphoreGiveRecursive()
BaseType_t
xQueueSend
(
QueueHandle_t
xQueue
,
FreeRTOS.h:493
xQueueSend()
BaseType_t
xQueueSendFromISR
(
QueueHandle_t
xQueue
,
FreeRTOS.h:497
xQueueSendFromISR()
BaseType_t
*
pxHigherPriorityTaskWoken
)
;
FreeRTOS.h:499
xQueueSendFromISR()
xQueueSendFromISR()::pxHigherPriorityTaskWoken
BaseType_t
xQueueSendToBack
(
QueueHandle_t
xQueue
,
FreeRTOS.h:501
xQueueSendToBack()
BaseType_t
xQueueSendToBackFromISR
(
QueueHandle_t
xQueue
,
FreeRTOS.h:505
xQueueSendToBackFromISR()
BaseType_t
*
pxHigherPriorityTaskWoken
)
;
FreeRTOS.h:507
xQueueSendToBackFromISR()
xQueueSendToBackFromISR()::pxHigherPriorityTaskWoken
BaseType_t
xQueueSendToFront
(
QueueHandle_t
xQueue
,
FreeRTOS.h:509
xQueueSendToFront()
BaseType_t
xQueueSendToFrontFromISR
(
QueueHandle_t
xQueue
,
FreeRTOS.h:513
xQueueSendToFrontFromISR()
BaseType_t
*
pxHigherPriorityTaskWoken
)
;
FreeRTOS.h:515
xQueueSendToFrontFromISR()
xQueueSendToFrontFromISR()::pxHigherPriorityTaskWoken
BaseType_t
xQueueReceive
(
QueueHandle_t
xQueue
,
FreeRTOS.h:517
xQueueReceive()
BaseType_t
xQueueReceiveFromISR
(
QueueHandle_t
xQueue
,
FreeRTOS.h:521
xQueueReceiveFromISR()
BaseType_t
*
pxHigherPriorityTaskWoken
)
;
FreeRTOS.h:523
xQueueReceiveFromISR()
xQueueReceiveFromISR()::pxHigherPriorityTaskWoken
BaseType_t
xQueuePeek
(
QueueHandle_t
xQueue
,
FreeRTOS.h:525
xQueuePeek()
BaseType_t
xQueuePeekFromISR
(
QueueHandle_t
xQueue
,
FreeRTOS.h:529
xQueuePeekFromISR()
BaseType_t
xQueueIsQueueEmptyFromISR
(
const
QueueHandle_t
xQueue
)
;
FreeRTOS.h:538
xQueueIsQueueEmptyFromISR()
BaseType_t
xQueueIsQueueFullFromISR
(
const
QueueHandle_t
xQueue
)
;
FreeRTOS.h:540
xQueueIsQueueFullFromISR()
BaseType_t
xQueueReset
(
QueueHandle_t
xQueue
)
;
FreeRTOS.h:542
xQueueReset()
BaseType_t
xQueueOverwrite
(
QueueHandle_t
xQueue
,
FreeRTOS.h:544
xQueueOverwrite()
BaseType_t
xQueueOverwriteFromISR
(
QueueHandle_t
xQueue
,
FreeRTOS.h:547
xQueueOverwriteFromISR()
BaseType_t
*
pxHigherPriorityTaskWoken
)
;
FreeRTOS.h:549
xQueueOverwriteFromISR()
xQueueOverwriteFromISR()::pxHigherPriorityTaskWoken
const
BaseType_t
xClearOnExit
,
FreeRTOS.h:563
xEventGroupWaitBits()
xEventGroupWaitBits()::xClearOnExit
const
BaseType_t
xWaitForAllBits
,
FreeRTOS.h:564
xEventGroupWaitBits()
xEventGroupWaitBits()::xWaitForAllBits
BaseType_t
xEventGroupSetBitsFromISR
(
EventGroupHandle_t
xEventGroup
,
FreeRTOS.h:570
xEventGroupSetBitsFromISR()
BaseType_t
*
pxHigherPriorityTaskWoken
)
;
FreeRTOS.h:572
xEventGroupSetBitsFromISR()
xEventGroupSetBitsFromISR()::pxHigherPriorityTaskWoken
BaseType_t
xEventGroupClearBitsFromISR
(
EventGroupHandle_t
xEventGroup
,
FreeRTOS.h:577
xEventGroupClearBitsFromISR()
BaseType_t
xTimerDelete
(
TimerHandle_t
xTimer
,
TickType_t
xBlockTime
)
;
FreeRTOS.h:608
xTimerDelete()
BaseType_t
xTimerIsTimerActive
(
TimerHandle_t
xTimer
)
;
FreeRTOS.h:610
xTimerIsTimerActive()
BaseType_t
xTimerStart
(
TimerHandle_t
xTimer
,
FreeRTOS.h:612
xTimerStart()
BaseType_t
xTimerStop
(
TimerHandle_t
xTimer
,
FreeRTOS.h:615
xTimerStop()
BaseType_t
xTimerChangePeriod
(
TimerHandle_t
xTimer
,
FreeRTOS.h:618
xTimerChangePeriod()
BaseType_t
xTimerReset
(
TimerHandle_t
xTimer
,
FreeRTOS.h:622
xTimerReset()
BaseType_t
xTimerStartFromISR
(
TimerHandle_t
xTimer
,
FreeRTOS.h:625
xTimerStartFromISR()
BaseType_t
*
pxHigherPriorityTaskWoken
)
;
FreeRTOS.h:626
xTimerStartFromISR()
xTimerStartFromISR()::pxHigherPriorityTaskWoken
BaseType_t
xTimerStopFromISR
(
TimerHandle_t
xTimer
,
FreeRTOS.h:628
xTimerStopFromISR()
BaseType_t
*
pxHigherPriorityTaskWoken
)
;
FreeRTOS.h:629
xTimerStopFromISR()
xTimerStopFromISR()::pxHigherPriorityTaskWoken
BaseType_t
xTimerChangePeriodFromISR
(
TimerHandle_t
xTimer
,
FreeRTOS.h:631
xTimerChangePeriodFromISR()
BaseType_t
*
pxHigherPriorityTaskWoken
)
;
FreeRTOS.h:633
xTimerChangePeriodFromISR()
xTimerChangePeriodFromISR()::pxHigherPriorityTaskWoken
BaseType_t
xTimerResetFromISR
(
TimerHandle_t
xTimer
,
FreeRTOS.h:635
xTimerResetFromISR()
BaseType_t
*
pxHigherPriorityTaskWoken
)
;
FreeRTOS.h:636
xTimerResetFromISR()
xTimerResetFromISR()::pxHigherPriorityTaskWoken
BaseType_t
xQueueAddToSet
(
QueueSetMemberHandle_t
xQueueOrSemaphore
,
FreeRTOS.h:658
xQueueAddToSet()
BaseType_t
xQueueRemoveFromSet
(
QueueSetMemberHandle_t
xQueueOrSemaphore
,
FreeRTOS.h:661
xQueueRemoveFromSet()
BaseType_t
xTaskGetSchedulerState
(
void
)
tx_freertos.c:273
xTaskGetSchedulerState()
return
taskSCHEDULER_SUSPENDED
;
tx_freertos.c:276
xTaskGetSchedulerState()
return
taskSCHEDULER_RUNNING
;
tx_freertos.c:278
xTaskGetSchedulerState()
BaseType_t
xTaskResumeAll
(
void
)
tx_freertos.c:292
xTaskResumeAll()
return
pdFALSE
;
tx_freertos.c:300
xTaskResumeAll()
BaseType_t
xTaskCreate
(
TaskFunction_t
pvTaskCode
,
tx_freertos.c:367
xTaskCreate()
return
(
BaseType_t
)
NULL
;
tx_freertos.c:414
xTaskCreate()
return
(
BaseType_t
)
NULL
;
tx_freertos.c:426
xTaskCreate()
return
pdPASS
;
tx_freertos.c:440
xTaskCreate()
BaseType_t
xTaskResumeFromISR
(
TaskHandle_t
xTaskToResume
)
tx_freertos.c:546
xTaskResumeFromISR()
return
pdFALSE
;
tx_freertos.c:552
xTaskResumeFromISR()
BaseType_t
xTaskAbortDelay
(
TaskHandle_t
xTask
)
tx_freertos.c:556
xTaskAbortDelay()
return
pdFAIL
;
tx_freertos.c:567
xTaskAbortDelay()
return
pdPASS
;
tx_freertos.c:570
xTaskAbortDelay()
BaseType_t
xTaskNotifyGive
(
TaskHandle_t
xTaskToNotify
)
tx_freertos.c:723
xTaskNotifyGive()
BaseType_t
*
pxHigherPriorityTaskWoken
)
tx_freertos.c:732
vTaskNotifyGiveFromISR()
vTaskNotifyGiveFromISR()::pxHigherPriorityTaskWoken
uint32_t
ulTaskNotifyTake
(
BaseType_t
xClearCountOnExit
,
tx_freertos.c:740
ulTaskNotifyTake()
ulTaskNotifyTake()::xClearCountOnExit
if
(
xClearCountOnExit
!=
pdFALSE
)
{
tx_freertos.c:768
ulTaskNotifyTake()
BaseType_t
xTaskNotifyWait
(
uint32_t
ulBitsToClearOnEntry
,
tx_freertos.c:793
xTaskNotifyWait()
BaseType_t
ret_val
;
tx_freertos.c:801
xTaskNotifyWait()
ret_val
=
pdPASS
;
tx_freertos.c:807
xTaskNotifyWait()
BaseType_t
xTaskNotify
(
TaskHandle_t
xTaskToNotify
,
tx_freertos.c:851
xTaskNotify()
BaseType_t
xTaskNotifyFromISR
(
TaskHandle_t
xTaskToNotify
,
tx_freertos.c:861
xTaskNotifyFromISR()
BaseType_t
*
pxHigherPriorityTaskWoken
)
tx_freertos.c:864
xTaskNotifyFromISR()
xTaskNotifyFromISR()::pxHigherPriorityTaskWoken
BaseType_t
xTaskNotifyAndQuery
(
TaskHandle_t
xTaskToNotify
,
tx_freertos.c:873
xTaskNotifyAndQuery()
BaseType_t
ret_val
;
tx_freertos.c:881
xTaskNotifyAndQuery()
ret_val
=
pdPASS
;
tx_freertos.c:895
xTaskNotifyAndQuery()
return
pdFAIL
;
tx_freertos.c:911
xTaskNotifyAndQuery()
ret_val
=
pdFALSE
;
tx_freertos.c:938
xTaskNotifyAndQuery()
return
pdFAIL
;
tx_freertos.c:944
xTaskNotifyAndQuery()
BaseType_t
xTaskNotifyAndQueryFromISR
(
TaskHandle_t
xTaskToNotify
,
tx_freertos.c:966
xTaskNotifyAndQueryFromISR()
BaseType_t
*
pxHigherPriorityTaskWoken
)
tx_freertos.c:970
xTaskNotifyAndQueryFromISR()
xTaskNotifyAndQueryFromISR()::pxHigherPriorityTaskWoken
BaseType_t
xTaskNotifyStateClear
(
TaskHandle_t
xTask
)
tx_freertos.c:980
xTaskNotifyStateClear()
BaseType_t
ret_val
;
tx_freertos.c:982
xTaskNotifyStateClear()
ret_val
=
pdTRUE
;
tx_freertos.c:999
xTaskNotifyStateClear()
ret_val
=
pdFALSE
;
tx_freertos.c:1001
xTaskNotifyStateClear()
return
pdFALSE
;
tx_freertos.c:1008
xTaskNotifyStateClear()
BaseType_t
ret_val
;
tx_freertos.c:1020
ulTaskNotifyValueClear()
BaseType_t
xSemaphoreTake
(
SemaphoreHandle_t
xSemaphore
,
TickType_t
xTicksToWait
)
tx_freertos.c:1253
xSemaphoreTake()
return
pdFALSE
;
tx_freertos.c:1268
xSemaphoreTake()
return
pdFALSE
;
tx_freertos.c:1272
xSemaphoreTake()
return
pdFALSE
;
tx_freertos.c:1277
xSemaphoreTake()
return
pdTRUE
;
tx_freertos.c:1281
xSemaphoreTake()
BaseType_t
xSemaphoreTakeFromISR
(
SemaphoreHandle_t
xSemaphore
,
BaseType_t
*
pxHigherPriorityTaskWoken
)
tx_freertos.c:1285
xSemaphoreTakeFromISR()
return
pdFALSE
;
tx_freertos.c:1292
xSemaphoreTakeFromISR()
return
pdFALSE
;
tx_freertos.c:1296
xSemaphoreTakeFromISR()
return
pdTRUE
;
tx_freertos.c:1300
xSemaphoreTakeFromISR()
BaseType_t
xSemaphoreTakeRecursive
(
SemaphoreHandle_t
xMutex
,
TickType_t
xTicksToWait
)
tx_freertos.c:1304
xSemaphoreTakeRecursive()
return
pdFALSE
;
tx_freertos.c:1320
xSemaphoreTakeRecursive()
return
pdFALSE
;
tx_freertos.c:1325
xSemaphoreTakeRecursive()
return
pdTRUE
;
tx_freertos.c:1329
xSemaphoreTakeRecursive()
BaseType_t
xSemaphoreGive
(
SemaphoreHandle_t
xSemaphore
)
tx_freertos.c:1333
xSemaphoreGive()
return
pdFALSE
;
tx_freertos.c:1343
xSemaphoreGive()
return
pdTRUE
;
tx_freertos.c:1346
xSemaphoreGive()
return
pdFALSE
;
tx_freertos.c:1356
xSemaphoreGive()
return
pdFALSE
;
tx_freertos.c:1363
xSemaphoreGive()
return
pdFALSE
;
tx_freertos.c:1374
xSemaphoreGive()
return
pdTRUE
;
tx_freertos.c:1383
xSemaphoreGive()
BaseType_t
xSemaphoreGiveFromISR
(
SemaphoreHandle_t
xSemaphore
,
BaseType_t
*
pxHigherPriorityTaskWoken
)
tx_freertos.c:1386
xSemaphoreGiveFromISR()
BaseType_t
xSemaphoreGiveRecursive
(
SemaphoreHandle_t
xMutex
)
tx_freertos.c:1394
xSemaphoreGiveRecursive()
BaseType_t
xQueueSend
(
QueueHandle_t
xQueue
,
tx_freertos.c:1561
xQueueSend()
return
pdFALSE
;
tx_freertos.c:1581
xQueueSend()
return
pdFALSE
;
tx_freertos.c:1598
xQueueSend()
return
pdFALSE
;
tx_freertos.c:1607
xQueueSend()
return
pdPASS
;
tx_freertos.c:1612
xQueueSend()
BaseType_t
xQueueSendFromISR
(
QueueHandle_t
xQueue
,
tx_freertos.c:1615
xQueueSendFromISR()
BaseType_t
*
pxHigherPriorityTaskWoken
)
tx_freertos.c:1617
xQueueSendFromISR()
xQueueSendFromISR()::pxHigherPriorityTaskWoken
BaseType_t
xQueueSendToBack
(
QueueHandle_t
xQueue
,
tx_freertos.c:1625
xQueueSendToBack()
BaseType_t
xQueueSendToBackFromISR
(
QueueHandle_t
xQueue
,
tx_freertos.c:1635
xQueueSendToBackFromISR()
BaseType_t
*
pxHigherPriorityTaskWoken
)
tx_freertos.c:1637
xQueueSendToBackFromISR()
xQueueSendToBackFromISR()::pxHigherPriorityTaskWoken
BaseType_t
xQueueSendToFront
(
QueueHandle_t
xQueue
,
tx_freertos.c:1645
xQueueSendToFront()
return
pdFALSE
;
tx_freertos.c:1671
xQueueSendToFront()
return
pdFALSE
;
tx_freertos.c:1694
xQueueSendToFront()
return
pdFALSE
;
tx_freertos.c:1705
xQueueSendToFront()
return
pdPASS
;
tx_freertos.c:1714
xQueueSendToFront()
BaseType_t
xQueueSendToFrontFromISR
(
QueueHandle_t
xQueue
,
tx_freertos.c:1717
xQueueSendToFrontFromISR()
BaseType_t
*
pxHigherPriorityTaskWoken
)
tx_freertos.c:1719
xQueueSendToFrontFromISR()
xQueueSendToFrontFromISR()::pxHigherPriorityTaskWoken
BaseType_t
xQueueReceive
(
QueueHandle_t
xQueue
,
tx_freertos.c:1727
xQueueReceive()
return
pdFAIL
;
tx_freertos.c:1747
xQueueReceive()
return
pdFALSE
;
tx_freertos.c:1764
xQueueReceive()
return
pdPASS
;
tx_freertos.c:1767
xQueueReceive()
BaseType_t
xQueueReceiveFromISR
(
QueueHandle_t
xQueue
,
tx_freertos.c:1770
xQueueReceiveFromISR()
BaseType_t
*
pxHigherPriorityTaskWoken
)
tx_freertos.c:1772
xQueueReceiveFromISR()
xQueueReceiveFromISR()::pxHigherPriorityTaskWoken
BaseType_t
ret
;
tx_freertos.c:1774
xQueueReceiveFromISR()
BaseType_t
xQueuePeek
(
QueueHandle_t
xQueue
,
tx_freertos.c:1784
xQueuePeek()
return
pdFAIL
;
tx_freertos.c:1804
xQueuePeek()
return
pdFALSE
;
tx_freertos.c:1817
xQueuePeek()
return
pdPASS
;
tx_freertos.c:1823
xQueuePeek()
BaseType_t
xQueuePeekFromISR
(
QueueHandle_t
xQueue
,
tx_freertos.c:1826
xQueuePeekFromISR()
BaseType_t
xQueueIsQueueEmptyFromISR
(
const
QueueHandle_t
xQueue
)
tx_freertos.c:1874
xQueueIsQueueEmptyFromISR()
return
pdTRUE
;
tx_freertos.c:1888
xQueueIsQueueEmptyFromISR()
return
pdFALSE
;
tx_freertos.c:1890
xQueueIsQueueEmptyFromISR()
BaseType_t
xQueueIsQueueFullFromISR
(
const
QueueHandle_t
xQueue
)
tx_freertos.c:1894
xQueueIsQueueFullFromISR()
return
pdTRUE
;
tx_freertos.c:1908
xQueueIsQueueFullFromISR()
return
pdFALSE
;
tx_freertos.c:1910
xQueueIsQueueFullFromISR()
BaseType_t
xQueueReset
(
QueueHandle_t
xQueue
)
tx_freertos.c:1915
xQueueReset()
return
pdFALSE
;
tx_freertos.c:1948
xQueueReset()
return
pdPASS
;
tx_freertos.c:1954
xQueueReset()
BaseType_t
xQueueOverwrite
(
QueueHandle_t
xQueue
,
tx_freertos.c:1958
xQueueOverwrite()
return
pdFALSE
;
tx_freertos.c:1999
xQueueOverwrite()
return
pdPASS
;
tx_freertos.c:2003
xQueueOverwrite()
BaseType_t
xQueueOverwriteFromISR
(
QueueHandle_t
xQueue
,
tx_freertos.c:2007
xQueueOverwriteFromISR()
BaseType_t
*
pxHigherPriorityTaskWoken
)
tx_freertos.c:2009
xQueueOverwriteFromISR()
xQueueOverwriteFromISR()::pxHigherPriorityTaskWoken
const
BaseType_t
xClearOnExit
,
tx_freertos.c:2088
xEventGroupWaitBits()
xEventGroupWaitBits()::xClearOnExit
const
BaseType_t
xWaitForAllBits
,
tx_freertos.c:2089
xEventGroupWaitBits()
xEventGroupWaitBits()::xWaitForAllBits
if
(
xWaitForAllBits
==
pdFALSE
)
{
tx_freertos.c:2105
xEventGroupWaitBits()
if
(
xClearOnExit
==
pdFALSE
)
{
tx_freertos.c:2106
xEventGroupWaitBits()
if
(
xClearOnExit
==
pdFALSE
)
{
tx_freertos.c:2112
xEventGroupWaitBits()
BaseType_t
xEventGroupSetBitsFromISR
(
EventGroupHandle_t
xEventGroup
,
tx_freertos.c:2150
xEventGroupSetBitsFromISR()
BaseType_t
*
pxHigherPriorityTaskWoken
)
tx_freertos.c:2152
xEventGroupSetBitsFromISR()
xEventGroupSetBitsFromISR()::pxHigherPriorityTaskWoken
BaseType_t
xEventGroupClearBitsFromISR
(
EventGroupHandle_t
xEventGroup
,
tx_freertos.c:2191
xEventGroupClearBitsFromISR()
if
(
uxAutoReload
!=
pdFALSE
)
{
tx_freertos.c:2268
xTimerCreate()
if
(
uxAutoReload
!=
pdFALSE
)
{
tx_freertos.c:2311
xTimerCreateStatic()
BaseType_t
xTimerDelete
(
TimerHandle_t
xTimer
,
TickType_t
xBlockTime
)
tx_freertos.c:2326
xTimerDelete()
return
pdFAIL
;
tx_freertos.c:2335
xTimerDelete()
return
pdPASS
;
tx_freertos.c:2342
xTimerDelete()
BaseType_t
xTimerIsTimerActive
(
TimerHandle_t
xTimer
)
tx_freertos.c:2346
xTimerIsTimerActive()
return
pdFALSE
;
tx_freertos.c:2355
xTimerIsTimerActive()
return
pdTRUE
;
tx_freertos.c:2359
xTimerIsTimerActive()
return
pdFALSE
;
tx_freertos.c:2361
xTimerIsTimerActive()
BaseType_t
xTimerStart
(
TimerHandle_t
xTimer
,
tx_freertos.c:2366
xTimerStart()
return
pdFAIL
;
tx_freertos.c:2375
xTimerStart()
return
pdPASS
;
tx_freertos.c:2378
xTimerStart()
BaseType_t
xTimerStop
(
TimerHandle_t
xTimer
,
tx_freertos.c:2382
xTimerStop()
return
pdFAIL
;
tx_freertos.c:2391
xTimerStop()
return
pdPASS
;
tx_freertos.c:2394
xTimerStop()
BaseType_t
xTimerChangePeriod
(
TimerHandle_t
xTimer
,
tx_freertos.c:2398
xTimerChangePeriod()
return
pdFAIL
;
tx_freertos.c:2413
xTimerChangePeriod()
return
pdFAIL
;
tx_freertos.c:2423
xTimerChangePeriod()
return
pdFAIL
;
tx_freertos.c:2429
xTimerChangePeriod()
return
pdPASS
;
tx_freertos.c:2434
xTimerChangePeriod()
BaseType_t
xTimerReset
(
TimerHandle_t
xTimer
,
tx_freertos.c:2438
xTimerReset()
return
pdFAIL
;
tx_freertos.c:2451
xTimerReset()
return
pdFAIL
;
tx_freertos.c:2461
xTimerReset()
return
pdFAIL
;
tx_freertos.c:2467
xTimerReset()
return
pdPASS
;
tx_freertos.c:2472
xTimerReset()
BaseType_t
xTimerStartFromISR
(
TimerHandle_t
xTimer
,
tx_freertos.c:2476
xTimerStartFromISR()
BaseType_t
*
pxHigherPriorityTaskWoken
)
tx_freertos.c:2477
xTimerStartFromISR()
xTimerStartFromISR()::pxHigherPriorityTaskWoken
BaseType_t
xTimerStopFromISR
(
TimerHandle_t
xTimer
,
tx_freertos.c:2485
xTimerStopFromISR()
BaseType_t
*
pxHigherPriorityTaskWoken
)
tx_freertos.c:2486
xTimerStopFromISR()
xTimerStopFromISR()::pxHigherPriorityTaskWoken
BaseType_t
xTimerChangePeriodFromISR
(
TimerHandle_t
xTimer
,
tx_freertos.c:2494
xTimerChangePeriodFromISR()
BaseType_t
*
pxHigherPriorityTaskWoken
)
tx_freertos.c:2496
xTimerChangePeriodFromISR()
xTimerChangePeriodFromISR()::pxHigherPriorityTaskWoken
BaseType_t
xTimerResetFromISR
(
TimerHandle_t
xTimer
,
tx_freertos.c:2505
xTimerResetFromISR()
BaseType_t
*
pxHigherPriorityTaskWoken
)
tx_freertos.c:2506
xTimerResetFromISR()
xTimerResetFromISR()::pxHigherPriorityTaskWoken
if
(
uxAutoReload
!=
pdFALSE
)
{
tx_freertos.c:2560
vTimerSetReloadMode()
type
=
pdTRUE
;
tx_freertos.c:2642
uxTimerGetReloadMode()
type
=
pdFALSE
;
tx_freertos.c:2644
uxTimerGetReloadMode()
BaseType_t
xQueueAddToSet
(
QueueSetMemberHandle_t
xQueueOrSemaphore
,
tx_freertos.c:2690
xQueueAddToSet()
return
pdFAIL
;
tx_freertos.c:2705
xQueueAddToSet()
return
pdFAIL
;
tx_freertos.c:2714
xQueueAddToSet()
return
pdFAIL
;
tx_freertos.c:2722
xQueueAddToSet()
return
pdPASS
;
tx_freertos.c:2727
xQueueAddToSet()
BaseType_t
xQueueRemoveFromSet
(
QueueSetMemberHandle_t
xQueueOrSemaphore
,
tx_freertos.c:2731
xQueueRemoveFromSet()
return
pdFAIL
;
tx_freertos.c:2748
xQueueRemoveFromSet()
return
pdFAIL
;
tx_freertos.c:2758
xQueueRemoveFromSet()
return
pdFAIL
;
tx_freertos.c:2766
xQueueRemoveFromSet()
return
pdPASS
;
tx_freertos.c:2771
xQueueRemoveFromSet()
Call Tree
from
0/1
examples
All items filtered out
All items filtered out
Data Use
from
0/1
examples
All items filtered out
All items filtered out
Class Tree
from
0/1
examples
All items filtered out
All items filtered out
Override Tree
from
0/1
examples
All items filtered out
All items filtered out
Implementations
from
0/1
examples
All items filtered out
All items filtered out
Instances
from
0/1
examples
Instance
Scope
Location
Project
return
xTaskGetSchedulerState()
FreeRTOS.h:334
return
xTaskResumeAll()
FreeRTOS.h:338
return
xTaskCreate()
FreeRTOS.h:348
return
xTaskResumeFromISR()
FreeRTOS.h:369
return
xTaskAbortDelay()
FreeRTOS.h:371
return
xTaskNotifyGive()
FreeRTOS.h:391
vTaskNotifyGiveFromISR()::pxHigherPriorityTaskWoken
vTaskNotifyGiveFromISR()
FreeRTOS.h:394
ulTaskNotifyTake()::xClearCountOnExit
ulTaskNotifyTake()
FreeRTOS.h:396
return
xTaskNotifyWait()
FreeRTOS.h:399
return
xTaskNotify()
FreeRTOS.h:404
return
xTaskNotifyFromISR()
FreeRTOS.h:408
xTaskNotifyFromISR()::pxHigherPriorityTaskWoken
xTaskNotifyFromISR()
FreeRTOS.h:411
return
xTaskNotifyAndQuery()
FreeRTOS.h:413
return
xTaskNotifyAndQueryFromISR()
FreeRTOS.h:420
xTaskNotifyAndQueryFromISR()::pxHigherPriorityTaskWoken
xTaskNotifyAndQueryFromISR()
FreeRTOS.h:424
return
xTaskNotifyStateClear()
FreeRTOS.h:428
return
xSemaphoreTake()
FreeRTOS.h:462
return
xSemaphoreTakeFromISR()
FreeRTOS.h:464
xSemaphoreTakeFromISR()::pxHigherPriorityTaskWoken
xSemaphoreTakeFromISR()
FreeRTOS.h:464
return
xSemaphoreTakeRecursive()
FreeRTOS.h:466
return
xSemaphoreGive()
FreeRTOS.h:468
return
xSemaphoreGiveFromISR()
FreeRTOS.h:470
xSemaphoreGiveFromISR()::pxHigherPriorityTaskWoken
xSemaphoreGiveFromISR()
FreeRTOS.h:470
return
xSemaphoreGiveRecursive()
FreeRTOS.h:472
return
xQueueSend()
FreeRTOS.h:493
return
xQueueSendFromISR()
FreeRTOS.h:497
xQueueSendFromISR()::pxHigherPriorityTaskWoken
xQueueSendFromISR()
FreeRTOS.h:499
return
xQueueSendToBack()
FreeRTOS.h:501
return
xQueueSendToBackFromISR()
FreeRTOS.h:505
xQueueSendToBackFromISR()::pxHigherPriorityTaskWoken
xQueueSendToBackFromISR()
FreeRTOS.h:507
return
xQueueSendToFront()
FreeRTOS.h:509
return
xQueueSendToFrontFromISR()
FreeRTOS.h:513
xQueueSendToFrontFromISR()::pxHigherPriorityTaskWoken
xQueueSendToFrontFromISR()
FreeRTOS.h:515
return
xQueueReceive()
FreeRTOS.h:517
return
xQueueReceiveFromISR()
FreeRTOS.h:521
xQueueReceiveFromISR()::pxHigherPriorityTaskWoken
xQueueReceiveFromISR()
FreeRTOS.h:523
return
xQueuePeek()
FreeRTOS.h:525
return
xQueuePeekFromISR()
FreeRTOS.h:529
return
xQueueIsQueueEmptyFromISR()
FreeRTOS.h:538
return
xQueueIsQueueFullFromISR()
FreeRTOS.h:540
return
xQueueReset()
FreeRTOS.h:542
return
xQueueOverwrite()
FreeRTOS.h:544
return
xQueueOverwriteFromISR()
FreeRTOS.h:547
xQueueOverwriteFromISR()::pxHigherPriorityTaskWoken
xQueueOverwriteFromISR()
FreeRTOS.h:549
xEventGroupWaitBits()::xClearOnExit
xEventGroupWaitBits()
FreeRTOS.h:563
xEventGroupWaitBits()::xWaitForAllBits
xEventGroupWaitBits()
FreeRTOS.h:564
return
xEventGroupSetBitsFromISR()
FreeRTOS.h:570
xEventGroupSetBitsFromISR()::pxHigherPriorityTaskWoken
xEventGroupSetBitsFromISR()
FreeRTOS.h:572
return
xEventGroupClearBitsFromISR()
FreeRTOS.h:577
return
xTimerDelete()
FreeRTOS.h:608
return
xTimerIsTimerActive()
FreeRTOS.h:610
return
xTimerStart()
FreeRTOS.h:612
return
xTimerStop()
FreeRTOS.h:615
return
xTimerChangePeriod()
FreeRTOS.h:618
return
xTimerReset()
FreeRTOS.h:622
return
xTimerStartFromISR()
FreeRTOS.h:625
xTimerStartFromISR()::pxHigherPriorityTaskWoken
xTimerStartFromISR()
FreeRTOS.h:626
return
xTimerStopFromISR()
FreeRTOS.h:628
xTimerStopFromISR()::pxHigherPriorityTaskWoken
xTimerStopFromISR()
FreeRTOS.h:629
return
xTimerChangePeriodFromISR()
FreeRTOS.h:631
xTimerChangePeriodFromISR()::pxHigherPriorityTaskWoken
xTimerChangePeriodFromISR()
FreeRTOS.h:633
return
xTimerResetFromISR()
FreeRTOS.h:635
xTimerResetFromISR()::pxHigherPriorityTaskWoken
xTimerResetFromISR()
FreeRTOS.h:636
return
xQueueAddToSet()
FreeRTOS.h:658
return
xQueueRemoveFromSet()
FreeRTOS.h:661
return
xTaskGetSchedulerState()
tx_freertos.c:273
return
xTaskResumeAll()
tx_freertos.c:292
return
xTaskCreate()
tx_freertos.c:367
return
xTaskResumeFromISR()
tx_freertos.c:546
return
xTaskAbortDelay()
tx_freertos.c:556
return
xTaskNotifyGive()
tx_freertos.c:723
vTaskNotifyGiveFromISR()::pxHigherPriorityTaskWoken
vTaskNotifyGiveFromISR()
tx_freertos.c:732
ulTaskNotifyTake()::xClearCountOnExit
ulTaskNotifyTake()
tx_freertos.c:740
return
xTaskNotifyWait()
tx_freertos.c:793
return
xTaskNotify()
tx_freertos.c:851
return
xTaskNotifyFromISR()
tx_freertos.c:861
xTaskNotifyFromISR()::pxHigherPriorityTaskWoken
xTaskNotifyFromISR()
tx_freertos.c:864
return
xTaskNotifyAndQuery()
tx_freertos.c:873
return
xTaskNotifyAndQueryFromISR()
tx_freertos.c:966
xTaskNotifyAndQueryFromISR()::pxHigherPriorityTaskWoken
xTaskNotifyAndQueryFromISR()
tx_freertos.c:970
return
xTaskNotifyStateClear()
tx_freertos.c:980
return
xSemaphoreTake()
tx_freertos.c:1253
return
xSemaphoreTakeFromISR()
tx_freertos.c:1285
xSemaphoreTakeFromISR()::pxHigherPriorityTaskWoken
xSemaphoreTakeFromISR()
tx_freertos.c:1285
return
xSemaphoreTakeRecursive()
tx_freertos.c:1304
return
xSemaphoreGive()
tx_freertos.c:1333
return
xSemaphoreGiveFromISR()
tx_freertos.c:1386
xSemaphoreGiveFromISR()::pxHigherPriorityTaskWoken
xSemaphoreGiveFromISR()
tx_freertos.c:1386
return
xSemaphoreGiveRecursive()
tx_freertos.c:1394
return
xQueueSend()
tx_freertos.c:1561
return
xQueueSendFromISR()
tx_freertos.c:1615
xQueueSendFromISR()::pxHigherPriorityTaskWoken
xQueueSendFromISR()
tx_freertos.c:1617
return
xQueueSendToBack()
tx_freertos.c:1625
return
xQueueSendToBackFromISR()
tx_freertos.c:1635
xQueueSendToBackFromISR()::pxHigherPriorityTaskWoken
xQueueSendToBackFromISR()
tx_freertos.c:1637
return
xQueueSendToFront()
tx_freertos.c:1645
return
xQueueSendToFrontFromISR()
tx_freertos.c:1717
xQueueSendToFrontFromISR()::pxHigherPriorityTaskWoken
xQueueSendToFrontFromISR()
tx_freertos.c:1719
return
xQueueReceive()
tx_freertos.c:1727
return
xQueueReceiveFromISR()
tx_freertos.c:1770
xQueueReceiveFromISR()::pxHigherPriorityTaskWoken
xQueueReceiveFromISR()
tx_freertos.c:1772
return
xQueuePeek()
tx_freertos.c:1784
return
xQueuePeekFromISR()
tx_freertos.c:1826
return
xQueueIsQueueEmptyFromISR()
tx_freertos.c:1874
return
xQueueIsQueueFullFromISR()
tx_freertos.c:1894
return
xQueueReset()
tx_freertos.c:1915
return
xQueueOverwrite()
tx_freertos.c:1958
return
xQueueOverwriteFromISR()
tx_freertos.c:2007
xQueueOverwriteFromISR()::pxHigherPriorityTaskWoken
xQueueOverwriteFromISR()
tx_freertos.c:2009
xEventGroupWaitBits()::xClearOnExit
xEventGroupWaitBits()
tx_freertos.c:2088
xEventGroupWaitBits()::xWaitForAllBits
xEventGroupWaitBits()
tx_freertos.c:2089
return
xEventGroupSetBitsFromISR()
tx_freertos.c:2150
xEventGroupSetBitsFromISR()::pxHigherPriorityTaskWoken
xEventGroupSetBitsFromISR()
tx_freertos.c:2152
return
xEventGroupClearBitsFromISR()
tx_freertos.c:2191
return
xTimerDelete()
tx_freertos.c:2326
return
xTimerIsTimerActive()
tx_freertos.c:2346
return
xTimerStart()
tx_freertos.c:2366
return
xTimerStop()
tx_freertos.c:2382
return
xTimerChangePeriod()
tx_freertos.c:2398
return
xTimerReset()
tx_freertos.c:2438
return
xTimerStartFromISR()
tx_freertos.c:2476
xTimerStartFromISR()::pxHigherPriorityTaskWoken
xTimerStartFromISR()
tx_freertos.c:2477
return
xTimerStopFromISR()
tx_freertos.c:2485
xTimerStopFromISR()::pxHigherPriorityTaskWoken
xTimerStopFromISR()
tx_freertos.c:2486
return
xTimerChangePeriodFromISR()
tx_freertos.c:2494
xTimerChangePeriodFromISR()::pxHigherPriorityTaskWoken
xTimerChangePeriodFromISR()
tx_freertos.c:2496
return
xTimerResetFromISR()
tx_freertos.c:2505
xTimerResetFromISR()::pxHigherPriorityTaskWoken
xTimerResetFromISR()
tx_freertos.c:2506
return
xQueueAddToSet()
tx_freertos.c:2690
return
xQueueRemoveFromSet()
tx_freertos.c:2731
Lifecycle
from
0/1
examples
All items filtered out
All items filtered out