Type Alias esp_idf_sys::PendedFunction_t
source · pub type PendedFunction_t = Option<unsafe extern "C" fn(arg1: *mut c_void, arg2: u32)>;
Expand description
Defines the prototype to which functions used with the xTimerPendFunctionCallFromISR() function must conform.
Aliased Type§
enum PendedFunction_t {
None,
Some(unsafe extern "C" fn(_: *mut c_void, _: u32)),
}