FreeRTOS - Task Creation and Management
What will be the output if this FreeRTOS task function runs and prints the parameter cast as int?
void MyTask(void *pvParameters) {
int value = (int)pvParameters;
printf("Value: %d\n", value);
vTaskDelete(NULL);
}
Called with (void *)42;
