Creating Tasks in STM32 FreeRTOS
1. Introduction to the xTaskCreate Task Creation Function typedef long BaseType_t; BaseType_t xTaskCreate( TaskFunction_t pvTaskCode, const char * const pcName, configSTACK_DEPTH_TYPE usStackDepth, void *pvParameters, UBaseType_t uxPriority, TaskHandle_t *pxCreatedTask ); Function: Creates a new task and adds it to the list of tasks that are ready to run. Each task requires RAM to store its state … Read more