Function esp_idf_sys::xTaskCallApplicationTaskHook
source ยท pub unsafe extern "C" fn xTaskCallApplicationTaskHook(
xTask: TaskHandle_t,
pvParameter: *mut c_void,
) -> BaseType_t
Expand description
Calls the hook function associated with xTask. Passing xTask as NULL has the effect of calling the Running tasks (the calling task) hook function.
pvParameter is passed to the hook function for the task to interpret as it wants. The return value is the value returned by the task hook function registered by the user.