FreeRTOS
vPortRaiseBASEPRI()
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
STM32 Libraries and Samples
FreeRTOS
vPortRaiseBASEPRI()
vPortRaiseBASEPRI() function
Syntax
Show:
Summary
Declaration
from
portmacro.h:250
portFORCE_INLINE
static
void
vPortRaiseBASEPRI
(
void
)
;
Examples
References
from
examples
Code
Location
Referrer
portFORCE_INLINE
static
void
vPortRaiseBASEPRI
(
void
)
portmacro.h:250
configASSERT
(
(
uxBitsToWaitFor
&
eventEVENT_BITS_CONTROL_BYTES
)
==
0
)
;
event_groups.c:198
xEventGroupSync()
configASSERT
(
uxBitsToWaitFor
!=
0
)
;
event_groups.c:199
xEventGroupSync()
configASSERT
(
!
(
(
xTaskGetSchedulerState
(
)
==
taskSCHEDULER_SUSPENDED
)
&&
(
xTicksToWait
!=
0
)
)
)
;
event_groups.c:202
xEventGroupSync()
configASSERT
(
xEventGroup
)
;
event_groups.c:320
xEventGroupWaitBits()
configASSERT
(
(
uxBitsToWaitFor
&
eventEVENT_BITS_CONTROL_BYTES
)
==
0
)
;
event_groups.c:321
xEventGroupWaitBits()
configASSERT
(
uxBitsToWaitFor
!=
0
)
;
event_groups.c:322
xEventGroupWaitBits()
configASSERT
(
!
(
(
xTaskGetSchedulerState
(
)
==
taskSCHEDULER_SUSPENDED
)
&&
(
xTicksToWait
!=
0
)
)
)
;
event_groups.c:325
xEventGroupWaitBits()
configASSERT
(
xEventGroup
)
;
event_groups.c:468
xEventGroupClearBits()
configASSERT
(
(
uxBitsToClear
&
eventEVENT_BITS_CONTROL_BYTES
)
==
0
)
;
event_groups.c:469
xEventGroupClearBits()
configASSERT
(
xEventGroup
)
;
event_groups.c:530
xEventGroupSetBits()
configASSERT
(
(
uxBitsToSet
&
eventEVENT_BITS_CONTROL_BYTES
)
==
0
)
;
event_groups.c:531
xEventGroupSetBits()
configASSERT
(
pxTasksWaitingForBits
->
xListEnd
.
pxNext
!=
(
const
ListItem_t
*
)
&
(
pxTasksWaitingForBits
->
xListEnd
)
)
;
event_groups.c:626
vEventGroupDelete()
configASSERT
(
(
xWantedSize
&
portBYTE_ALIGNMENT_MASK
)
==
0
)
;
heap_4.c:151
pvPortMalloc()
configASSERT
(
(
(
(
size_t
)
pxNewBlockLink
)
&
portBYTE_ALIGNMENT_MASK
)
==
0
)
;
heap_4.c:196
pvPortMalloc()
configASSERT
(
(
(
(
size_t
)
pvReturn
)
&
(
size_t
)
portBYTE_ALIGNMENT_MASK
)
==
0
)
;
heap_4.c:261
pvPortMalloc()
configASSERT
(
(
pxLink
->
xBlockSize
&
xBlockAllocatedBit
)
!=
0
)
;
heap_4.c:281
vPortFree()
configASSERT
(
pxLink
->
pxNextFreeBlock
==
NULL
)
;
heap_4.c:282
vPortFree()
configASSERT
(
(
configMAX_SYSCALL_INTERRUPT_PRIORITY
)
)
;
port.c:380
xPortStartScheduler()
configASSERT
(
(
portMAX_PRIGROUP_BITS
-
ulMaxPRIGROUPValue
)
==
configPRIO_BITS
)
;
port.c:429
xPortStartScheduler()
configASSERT
(
uxCriticalNesting
==
1000UL
)
;
port.c:494
vPortEndScheduler()
portDISABLE_INTERRUPTS
(
)
;
port.c:502
vPortEnterCritical()
configASSERT
(
uxCriticalNesting
)
;
port.c:513
vPortExitCritical()
configASSERT
(
ucCurrentPriority
>=
ucMaxSysCallPriority
)
;
port.c:911
vPortValidateInterruptPriority()
configASSERT
(
(
portAIRCR_REG
&
portPRIORITY_GROUP_MASK
)
<=
ulMaxPRIGROUPValue
)
;
port.c:927
vPortValidateInterruptPriority()
configASSERT
(
pxQueue
)
;
queue.c:259
xQueueGenericReset()
configASSERT
(
uxQueueLength
>
(
UBaseType_t
)
0
)
;
queue.c:374
xQueueGenericCreate()
configASSERT
(
xSemaphore
)
;
queue.c:567
xQueueGetMutexHolderFromISR()
configASSERT
(
pxMutex
)
;
queue.c:594
xQueueGiveMutexRecursive()
configASSERT
(
pxMutex
)
;
queue.c:649
xQueueTakeMutexRecursive()
configASSERT
(
uxMaxCount
!=
0
)
;
queue.c:718
xQueueCreateCountingSemaphore()
configASSERT
(
uxInitialCount
<=
uxMaxCount
)
;
queue.c:719
xQueueCreateCountingSemaphore()
configASSERT
(
pxQueue
)
;
queue.c:746
xQueueGenericSend()
configASSERT
(
!
(
(
pvItemToQueue
==
NULL
)
&&
(
pxQueue
->
uxItemSize
!=
(
UBaseType_t
)
0U
)
)
)
;
queue.c:747
xQueueGenericSend()
configASSERT
(
!
(
(
xCopyPosition
==
queueOVERWRITE
)
&&
(
pxQueue
->
uxLength
!=
1
)
)
)
;
queue.c:748
xQueueGenericSend()
configASSERT
(
!
(
(
xTaskGetSchedulerState
(
)
==
taskSCHEDULER_SUSPENDED
)
&&
(
xTicksToWait
!=
0
)
)
)
;
queue.c:751
xQueueGenericSend()
configASSERT
(
pxQueue
)
;
queue.c:956
xQueueGenericSendFromISR()
configASSERT
(
!
(
(
pvItemToQueue
==
NULL
)
&&
(
pxQueue
->
uxItemSize
!=
(
UBaseType_t
)
0U
)
)
)
;
queue.c:957
xQueueGenericSendFromISR()
configASSERT
(
!
(
(
xCopyPosition
==
queueOVERWRITE
)
&&
(
pxQueue
->
uxLength
!=
1
)
)
)
;
queue.c:958
xQueueGenericSendFromISR()
configASSERT
(
pxQueue
)
;
queue.c:1124
xQueueGiveFromISR()
configASSERT
(
pxQueue
->
uxItemSize
==
0
)
;
queue.c:1128
xQueueGiveFromISR()
configASSERT
(
!
(
(
pxQueue
->
uxQueueType
==
queueQUEUE_IS_MUTEX
)
&&
(
pxQueue
->
u
.
xSemaphore
.
xMutexHolder
!=
NULL
)
)
)
;
queue.c:1133
xQueueGiveFromISR()
configASSERT
(
(
pxQueue
)
)
;
queue.c:1284
xQueueReceive()
configASSERT
(
!
(
(
(
pvBuffer
)
==
NULL
)
&&
(
(
pxQueue
)
->
uxItemSize
!=
(
UBaseType_t
)
0U
)
)
)
;
queue.c:1288
xQueueReceive()
configASSERT
(
!
(
(
xTaskGetSchedulerState
(
)
==
taskSCHEDULER_SUSPENDED
)
&&
(
xTicksToWait
!=
0
)
)
)
;
queue.c:1293
xQueueReceive()
configASSERT
(
(
pxQueue
)
)
;
queue.c:1429
xQueueSemaphoreTake()
configASSERT
(
pxQueue
->
uxItemSize
==
0
)
;
queue.c:1433
xQueueSemaphoreTake()
configASSERT
(
!
(
(
xTaskGetSchedulerState
(
)
==
taskSCHEDULER_SUSPENDED
)
&&
(
xTicksToWait
!=
0
)
)
)
;
queue.c:1438
xQueueSemaphoreTake()
configASSERT
(
xInheritanceOccurred
==
pdFALSE
)
;
queue.c:1509
xQueueSemaphoreTake()
configASSERT
(
(
pxQueue
)
)
;
queue.c:1644
xQueuePeek()
configASSERT
(
!
(
(
(
pvBuffer
)
==
NULL
)
&&
(
(
pxQueue
)
->
uxItemSize
!=
(
UBaseType_t
)
0U
)
)
)
;
queue.c:1648
xQueuePeek()
configASSERT
(
!
(
(
xTaskGetSchedulerState
(
)
==
taskSCHEDULER_SUSPENDED
)
&&
(
xTicksToWait
!=
0
)
)
)
;
queue.c:1653
xQueuePeek()
configASSERT
(
pxQueue
)
;
queue.c:1791
xQueueReceiveFromISR()
configASSERT
(
!
(
(
pvBuffer
==
NULL
)
&&
(
pxQueue
->
uxItemSize
!=
(
UBaseType_t
)
0U
)
)
)
;
queue.c:1792
xQueueReceiveFromISR()
configASSERT
(
pxQueue
)
;
queue.c:1883
xQueuePeekFromISR()
configASSERT
(
!
(
(
pvBuffer
==
NULL
)
&&
(
pxQueue
->
uxItemSize
!=
(
UBaseType_t
)
0U
)
)
)
;
queue.c:1884
xQueuePeekFromISR()
configASSERT
(
pxQueue
->
uxItemSize
!=
0
)
;
/* Can't peek a semaphore. */
queue.c:1885
xQueuePeekFromISR()
configASSERT
(
xQueue
)
;
queue.c:1934
uxQueueMessagesWaiting()
configASSERT
(
pxQueue
)
;
queue.c:1951
uxQueueSpacesAvailable()
configASSERT
(
pxQueue
)
;
queue.c:1968
uxQueueMessagesWaitingFromISR()
configASSERT
(
pxQueue
)
;
queue.c:1979
vQueueDelete()
configASSERT
(
pxQueue
)
;
queue.c:2317
xQueueIsQueueEmptyFromISR()
configASSERT
(
pxQueue
)
;
queue.c:2357
xQueueIsQueueFullFromISR()
configASSERT
(
pxQueueSetContainer
)
;
queue.c:2889
prvNotifyQueueSetContainer()
configASSERT
(
pxQueueSetContainer
->
uxMessagesWaiting
<
pxQueueSetContainer
->
uxLength
)
;
queue.c:2890
prvNotifyQueueSetContainer()
configASSERT
(
xBufferSizeBytes
>
sbBYTES_TO_STORE_MESSAGE_LENGTH
)
;
stream_buffer.c:232
xStreamBufferGenericCreate()
configASSERT
(
xBufferSizeBytes
>
0
)
;
stream_buffer.c:238
xStreamBufferGenericCreate()
configASSERT
(
xTriggerLevelBytes
<=
xBufferSizeBytes
)
;
stream_buffer.c:240
xStreamBufferGenericCreate()
configASSERT
(
pxStreamBuffer
)
;
stream_buffer.c:363
vStreamBufferDelete()
configASSERT
(
pxStreamBuffer
)
;
stream_buffer.c:401
xStreamBufferReset()
configASSERT
(
pxStreamBuffer
)
;
stream_buffer.c:446
xStreamBufferSetTriggerLevel()
configASSERT
(
pxStreamBuffer
)
;
stream_buffer.c:475
xStreamBufferSpacesAvailable()
configASSERT
(
pxStreamBuffer
)
;
stream_buffer.c:499
xStreamBufferBytesAvailable()
configASSERT
(
pvTxData
)
;
stream_buffer.c:516
xStreamBufferSend()
configASSERT
(
pxStreamBuffer
)
;
stream_buffer.c:517
xStreamBufferSend()
configASSERT
(
xRequiredSpace
>
xDataLengthBytes
)
;
stream_buffer.c:528
xStreamBufferSend()
configASSERT
(
pxStreamBuffer
->
xTaskWaitingToSend
==
NULL
)
;
stream_buffer.c:553
xStreamBufferSend()
configASSERT
(
pvTxData
)
;
stream_buffer.c:619
xStreamBufferSendFromISR()
configASSERT
(
pxStreamBuffer
)
;
stream_buffer.c:620
xStreamBufferSendFromISR()
configASSERT
(
pvRxData
)
;
stream_buffer.c:721
xStreamBufferReceive()
configASSERT
(
pxStreamBuffer
)
;
stream_buffer.c:722
xStreamBufferReceive()
configASSERT
(
pxStreamBuffer
->
xTaskWaitingToReceive
==
NULL
)
;
stream_buffer.c:757
xStreamBufferReceive()
configASSERT
(
pxStreamBuffer
)
;
stream_buffer.c:823
xStreamBufferNextMessageLengthBytes()
configASSERT
(
xBytesAvailable
==
0
)
;
stream_buffer.c:848
xStreamBufferNextMessageLengthBytes()
configASSERT
(
pvRxData
)
;
stream_buffer.c:869
xStreamBufferReceiveFromISR()
configASSERT
(
pxStreamBuffer
)
;
stream_buffer.c:870
xStreamBufferReceiveFromISR()
configASSERT
(
pxStreamBuffer
)
;
stream_buffer.c:976
xStreamBufferIsEmpty()
configASSERT
(
pxStreamBuffer
)
;
stream_buffer.c:999
xStreamBufferIsFull()
configASSERT
(
pxStreamBuffer
)
;
stream_buffer.c:1034
xStreamBufferSendCompletedFromISR()
configASSERT
(
pxStreamBuffer
)
;
stream_buffer.c:1064
xStreamBufferReceiveCompletedFromISR()
configASSERT
(
xCount
>
(
size_t
)
0
)
;
stream_buffer.c:1092
prvWriteBytesToBuffer()
configASSERT
(
(
xNextHead
+
xFirstLength
)
<=
pxStreamBuffer
->
xLength
)
;
stream_buffer.c:1102
prvWriteBytesToBuffer()
configASSERT
(
(
xCount
-
xFirstLength
)
<=
pxStreamBuffer
->
xLength
)
;
stream_buffer.c:1110
prvWriteBytesToBuffer()
configASSERT
(
xFirstLength
<=
xMaxCount
)
;
stream_buffer.c:1152
prvReadBytesFromBuffer()
configASSERT
(
(
xNextTail
+
xFirstLength
)
<=
pxStreamBuffer
->
xLength
)
;
stream_buffer.c:1153
prvReadBytesFromBuffer()
configASSERT
(
xCount
<=
xMaxCount
)
;
stream_buffer.c:1161
prvReadBytesFromBuffer()
configASSERT
(
memset
(
pucBuffer
,
(
int
)
xWriteValue
,
xBufferSizeBytes
)
==
pucBuffer
)
;
stream_buffer.c:1224
prvInitialiseNewStreamBuffer()
configASSERT
(
pxTaskDefinition
->
puxStackBuffer
)
;
tasks.c:689
xTaskCreateRestricted()
configASSERT
(
(
(
(
portPOINTER_SIZE_TYPE
)
pxTopOfStack
&
(
portPOINTER_SIZE_TYPE
)
portBYTE_ALIGNMENT_MASK
)
==
0UL
)
)
;
tasks.c:868
prvInitialiseNewTask()
configASSERT
(
uxSchedulerSuspended
==
0
)
;
tasks.c:1242
vTaskDelete()
configASSERT
(
pxPreviousWakeTime
)
;
tasks.c:1262
vTaskDelayUntil()
configASSERT
(
(
xTimeIncrement
>
0U
)
)
;
tasks.c:1263
vTaskDelayUntil()
configASSERT
(
uxSchedulerSuspended
==
0
)
;
tasks.c:1264
vTaskDelayUntil()
configASSERT
(
uxSchedulerSuspended
==
0
)
;
tasks.c:1348
vTaskDelay()
configASSERT
(
pxTCB
)
;
tasks.c:1392
eTaskGetState()
configASSERT
(
(
uxNewPriority
<
configMAX_PRIORITIES
)
)
;
tasks.c:1546
vTaskPrioritySet()
configASSERT
(
uxSchedulerSuspended
==
0
)
;
tasks.c:1772
vTaskSuspend()
configASSERT
(
xTask
)
;
tasks.c:1814
prvTaskIsTaskSuspended()
configASSERT
(
xTaskToResume
)
;
tasks.c:1856
vTaskResume()
configASSERT
(
xTaskToResume
)
;
tasks.c:1911
xTaskResumeFromISR()
portDISABLE_INTERRUPTS
(
)
;
tasks.c:2047
vTaskStartScheduler()
configASSERT
(
xReturn
!=
errCOULD_NOT_ALLOCATE_REQUIRED_MEMORY
)
;
tasks.c:2090
vTaskStartScheduler()
portDISABLE_INTERRUPTS
(
)
;
tasks.c:2104
vTaskEndScheduler()
configASSERT
(
uxSchedulerSuspended
)
;
tasks.c:2201
xTaskResumeAll()
configASSERT
(
pxTCB
)
;
tasks.c:2365
pcTaskGetName()
configASSERT
(
strlen
(
pcNameToQuery
)
<
configMAX_TASK_NAME_LEN
)
;
tasks.c:2446
xTaskGetHandle()
configASSERT
(
(
xIdleTaskHandle
!=
NULL
)
)
;
tasks.c:2583
xTaskGetIdleTaskHandle()
configASSERT
(
uxSchedulerSuspended
==
0
)
;
tasks.c:2615
xTaskCatchUpTicks()
configASSERT
(
pxTCB
)
;
tasks.c:2634
xTaskAbortDelay()
taskSWITCH_DELAYED_LISTS
(
)
;
tasks.c:2729
xTaskIncrementTick()
taskSELECT_HIGHEST_PRIORITY_TASK
(
)
;
/*lint !e9079 void * is used as this macro is used with timers and co-routines too. Alignment is known to be fine as the type of the pointer stored and retrieved is the same. */
tasks.c:3041
vTaskSwitchContext()
configASSERT
(
pxEventList
)
;
tasks.c:3066
vTaskPlaceOnEventList()
configASSERT
(
pxEventList
)
;
tasks.c:3083
vTaskPlaceOnUnorderedEventList()
configASSERT
(
uxSchedulerSuspended
!=
0
)
;
tasks.c:3087
vTaskPlaceOnUnorderedEventList()
configASSERT
(
pxEventList
)
;
tasks.c:3109
vTaskPlaceOnEventListRestricted()
configASSERT
(
pxUnblockedTCB
)
;
tasks.c:3157
xTaskRemoveFromEventList()
configASSERT
(
uxSchedulerSuspended
!=
pdFALSE
)
;
tasks.c:3212
vTaskRemoveFromUnorderedEventList()
configASSERT
(
pxUnblockedTCB
)
;
tasks.c:3220
vTaskRemoveFromUnorderedEventList()
configASSERT
(
pxTimeOut
)
;
tasks.c:3256
vTaskSetTimeOutState()
configASSERT
(
pxTimeOut
)
;
tasks.c:3278
xTaskCheckForTimeOut()
configASSERT
(
pxTicksToWait
)
;
tasks.c:3279
xTaskCheckForTimeOut()
configASSERT
(
pxTCB
->
ucStaticallyAllocated
==
tskSTATICALLY_ALLOCATED_STACK_AND_TCB
)
;
tasks.c:3933
prvDeleteTCB()
configASSERT
(
pxTCB
==
pxCurrentTCB
)
;
tasks.c:4115
xTaskPriorityDisinherit()
configASSERT
(
pxTCB
->
uxMutexesHeld
)
;
tasks.c:4116
xTaskPriorityDisinherit()
configASSERT
(
pxTCB
->
uxMutexesHeld
)
;
tasks.c:4194
vTaskPriorityDisinheritAfterTimeout()
configASSERT
(
pxTCB
!=
pxCurrentTCB
)
;
tasks.c:4221
vTaskPriorityDisinheritAfterTimeout()
configASSERT
(
xTaskToNotify
)
;
tasks.c:4789
xTaskGenericNotify()
configASSERT
(
pxTCB
->
ulNotifiedValue
==
~
0UL
)
;
tasks.c:4838
xTaskGenericNotify()
configASSERT
(
listLIST_ITEM_CONTAINER
(
&
(
pxTCB
->
xEventListItem
)
)
==
NULL
)
;
tasks.c:4853
xTaskGenericNotify()
configASSERT
(
xTaskToNotify
)
;
tasks.c:4904
xTaskGenericNotifyFromISR()
configASSERT
(
pxTCB
->
ulNotifiedValue
==
~
0UL
)
;
tasks.c:4971
xTaskGenericNotifyFromISR()
configASSERT
(
listLIST_ITEM_CONTAINER
(
&
(
pxTCB
->
xEventListItem
)
)
==
NULL
)
;
tasks.c:4982
xTaskGenericNotifyFromISR()
configASSERT
(
xTaskToNotify
)
;
tasks.c:5032
vTaskNotifyGiveFromISR()
configASSERT
(
listLIST_ITEM_CONTAINER
(
&
(
pxTCB
->
xEventListItem
)
)
==
NULL
)
;
tasks.c:5070
vTaskNotifyGiveFromISR()
configASSERT
(
xReturn
)
;
timers.c:275
xTimerCreateTimerTask()
configASSERT
(
(
xTimerPeriodInTicks
>
0
)
)
;
timers.c:357
prvInitialiseNewTimer()
configASSERT
(
xTimer
)
;
timers.c:386
xTimerGenericCommand()
configASSERT
(
(
xTimerTaskHandle
!=
NULL
)
)
;
timers.c:428
xTimerGetTimerDaemonTaskHandle()
configASSERT
(
xTimer
)
;
timers.c:437
xTimerGetPeriod()
configASSERT
(
xTimer
)
;
timers.c:446
vTimerSetReloadMode()
configASSERT
(
xTimer
)
;
timers.c:467
uxTimerGetReloadMode()
configASSERT
(
xTimer
)
;
timers.c:492
xTimerGetExpiryTime()
configASSERT
(
xTimer
)
;
timers.c:502
pcTimerGetName()
configASSERT
(
xResult
)
;
timers.c:529
prvProcessExpiredTimer()
configASSERT
(
xResult
)
;
timers.c:812
prvProcessReceivedCommands()
configASSERT
(
(
pxTimer
->
xTimerPeriodInTicks
>
0
)
)
;
timers.c:836
prvProcessReceivedCommands()
configASSERT
(
xResult
)
;
timers.c:925
prvSwitchTimerLists()
configASSERT
(
xTimer
)
;
timers.c:997
xTimerIsTimerActive()
configASSERT
(
xTimer
)
;
timers.c:1022
pvTimerGetTimerID()
configASSERT
(
xTimer
)
;
timers.c:1038
vTimerSetTimerID()
Call Tree
from
examples
vPortRaiseBASEPRI()
is called by 100 functions:
xQueueGenericReset()
xQueueGenericCreate()
xQueueGetMutexHolderFromISR()
xQueueGiveMutexRecursive()
xQueueTakeMutexRecursive()
xQueueCreateCountingSemaphore()
xQueueGenericSend()
xQueueGenericSendFromISR()
xQueueGiveFromISR()
xQueueReceive()
xQueueSemaphoreTake()
xQueuePeek()
xQueueReceiveFromISR()
xQueuePeekFromISR()
uxQueueMessagesWaiting()
uxQueueSpacesAvailable()
uxQueueMessagesWaitingFromISR()
vQueueDelete()
xQueueIsQueueEmptyFromISR()
xQueueIsQueueFullFromISR()
prvNotifyQueueSetContainer()
xTaskCreateRestricted()
prvInitialiseNewTask()
vTaskDelete()
vTaskDelayUntil()
vTaskDelay()
eTaskGetState()
vTaskPrioritySet()
vTaskSuspend()
prvTaskIsTaskSuspended()
vTaskResume()
xTaskResumeFromISR()
vTaskStartScheduler()
vTaskEndScheduler()
xTaskResumeAll()
pcTaskGetName()
xTaskGetHandle()
xTaskGetIdleTaskHandle()
xTaskCatchUpTicks()
xTaskAbortDelay()
xTaskIncrementTick()
vTaskSwitchContext()
vTaskPlaceOnEventList()
vTaskPlaceOnUnorderedEventList()
vTaskPlaceOnEventListRestricted()
xTaskRemoveFromEventList()
vTaskRemoveFromUnorderedEventList()
vTaskSetTimeOutState()
xTaskCheckForTimeOut()
prvDeleteTCB()
xTaskPriorityDisinherit()
vTaskPriorityDisinheritAfterTimeout()
xTaskGenericNotify()
xTaskGenericNotifyFromISR()
vTaskNotifyGiveFromISR()
xTimerCreateTimerTask()
prvInitialiseNewTimer()
xTimerGenericCommand()
xTimerGetTimerDaemonTaskHandle()
xTimerGetPeriod()
vTimerSetReloadMode()
uxTimerGetReloadMode()
xTimerGetExpiryTime()
pcTimerGetName()
prvProcessExpiredTimer()
prvProcessReceivedCommands()
prvSwitchTimerLists()
xTimerIsTimerActive()
pvTimerGetTimerID()
vTimerSetTimerID()
pvPortMalloc()
vPortFree()
xEventGroupSync()
xEventGroupWaitBits()
xEventGroupClearBits()
xEventGroupSetBits()
vEventGroupDelete()
xStreamBufferGenericCreate()
vStreamBufferDelete()
xStreamBufferReset()
xStreamBufferSetTriggerLevel()
xStreamBufferSpacesAvailable()
xStreamBufferBytesAvailable()
xStreamBufferSend()
xStreamBufferSendFromISR()
xStreamBufferReceive()
xStreamBufferNextMessageLengthBytes()
xStreamBufferReceiveFromISR()
xStreamBufferIsEmpty()
xStreamBufferIsFull()
xStreamBufferSendCompletedFromISR()
xStreamBufferReceiveCompletedFromISR()
prvWriteBytesToBuffer()
prvReadBytesFromBuffer()
prvInitialiseNewStreamBuffer()
xPortStartScheduler()
vPortEndScheduler()
vPortEnterCritical()
vPortExitCritical()
vPortValidateInterruptPriority()
All items filtered out
vPortRaiseBASEPRI()
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
Lifecycle
from
examples
All items filtered out
All items filtered out