![]() |
LPCOpen Platform
LPCOpen Platform for NXP LPC Microcontrollers
|
void | FreeRTOSDelay (uint32_t ms) |
Delay for the specified number of milliSeconds. | |
void | vApplicationMallocFailedHook (void) |
FreeRTOS malloc fail hook. | |
void | vApplicationIdleHook (void) |
FreeRTOS application idle hook. | |
void | vApplicationStackOverflowHook (xTaskHandle pxTask, signed char *pcTaskName) |
FreeRTOS stack overflow hook. | |
void | vApplicationTickHook (void) |
FreeRTOS application tick hook. | |
void FreeRTOSDelay | ( | uint32_t | ms | ) |
Delay for the specified number of milliSeconds.
ms | : Delay in milliSeconds |
Definition at line 55 of file FreeRTOSCommonHooks.c.
void vApplicationIdleHook | ( | void | ) |
FreeRTOS application idle hook.
Definition at line 72 of file FreeRTOSCommonHooks.c.
void vApplicationMallocFailedHook | ( | void | ) |
FreeRTOS malloc fail hook.
Definition at line 64 of file FreeRTOSCommonHooks.c.
void vApplicationStackOverflowHook | ( | xTaskHandle | pxTask, |
signed char * | pcTaskName | ||
) |
FreeRTOS stack overflow hook.
pxTask | : Task handle that overflowed stack |
pcTaskName | : Task name that overflowed stack |
Definition at line 79 of file FreeRTOSCommonHooks.c.
void vApplicationTickHook | ( | void | ) |
FreeRTOS application tick hook.
Definition at line 93 of file FreeRTOSCommonHooks.c.