esp_ipc_call_blocking() function
Execute a callback on a given CPU until and block until it completes This function is identical to esp_ipc_call() except that this function will block until the execution of the callback completes.
Arguments
cpu_id
CPU where the given function should be executed (0 or 1)
func
Pointer to a function of type void func(void* arg) to be executed
arg
Arbitrary argument of type void* to be passed into the function
Return value
- ESP_ERR_INVALID_ARG if cpu_id is invalid - ESP_ERR_INVALID_STATE if the FreeRTOS scheduler is not running - ESP_OK otherwise
Notes
In single-core mode, returns ESP_ERR_INVALID_ARG for cpu_id 1.