pub type wifi_rxcb_t = Option<unsafe extern "C" fn(_: *mut c_void, _: u16, _: *mut c_void) -> i32>;Expand description
@brief The WiFi RX callback function
Each time the WiFi need to forward the packets to high layer, the callback function will be calledAliased Type§
enum wifi_rxcb_t {
None,
Some(unsafe extern "C" fn(_: *mut c_void, _: u16, _: *mut c_void) -> i32),
}