pub type PendedFunction_t = Option<unsafe extern "C" fn(_: *mut c_void, _: 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)),
}