FreeRTOS - RTOS Fundamentals
Examine the following FreeRTOS task creation code snippet:
BaseType_t result = xTaskCreate(TaskHandler, "TaskA", 512, NULL, 3, NULL);What is the most likely issue with this code?
