Type Alias esp_idf_hal::sys::wifi_action_rx_cb_t
source · pub type wifi_action_rx_cb_t = Option<unsafe extern "C" fn(_: *mut u8, _: *mut u8, _: usize, _: u8) -> i32>;
Expand description
@brief The Rx callback function of Action Tx operations
@param hdr pointer to the IEEE 802.11 Header structure @param payload pointer to the Payload following 802.11 Header @param len length of the Payload @param channel channel number the frame is received on
Aliased Type§
enum wifi_action_rx_cb_t {
None,
Some(unsafe extern "C" fn(_: *mut u8, _: *mut u8, _: usize, _: u8) -> i32),
}