Complete the code to declare a FreeRTOS task function with the correct return type.
[1] vTaskCode(void *pvParameters) {
// Task code here
}The correct return type for a FreeRTOS task function is void.
Complete the code to declare a FreeRTOS task function with the correct parameter type.
void vTaskCode([1] pvParameters) {
// Task code here
}void *.The parameter for a FreeRTOS task function must be a void * pointer.
Fix the error in the task function signature to match FreeRTOS requirements.
[1] vTaskCode(void *pvParameters) {
// Task code here
}int as return type and returning a value.The task function must return void, so change the return type to void and keep the function name as vTaskCode.
Fill both blanks to complete the FreeRTOS task function signature correctly.
[1] [2](void *pvParameters) { // Task code here }
The correct signature starts with void as return type and the function name vTaskCode.
Fill all three blanks to complete the FreeRTOS task function signature and parameter correctly.
[1] [2]([3] pvParameters) { // Task code here }
The correct signature is void vTaskCode(void *pvParameters).