FreeRTOS - Task Creation and Management
What is wrong with this
xTaskCreate() usage?TaskHandle_t xHandle;
BaseType_t res = xTaskCreate(
NULL, "Task", 1000, NULL, 2, &xHandle);
if(res == pdPASS) printf("Created\n");