#[repr(C)]pub struct wifi_action_tx_req_t {
pub ifx: wifi_interface_t,
pub dest_mac: [u8; 6],
pub type_: wifi_action_tx_t,
pub channel: u8,
pub sec_channel: wifi_second_chan_t,
pub wait_time_ms: u32,
pub no_ack: bool,
pub rx_cb: wifi_action_rx_cb_t,
pub op_id: u8,
pub data_len: u32,
pub data: __IncompleteArrayField<u8>,
}Expand description
@brief Action Frame Tx Request
Fields§
§ifx: wifi_interface_t< Wi-Fi interface to send request to
dest_mac: [u8; 6]< Destination MAC address
type_: wifi_action_tx_t< ACTION TX operation type
channel: u8< Channel on which to perform ACTION TX Operation
sec_channel: wifi_second_chan_t< Secondary channel
wait_time_ms: u32< Duration to wait for on target channel
no_ack: bool< Indicates no ack required
rx_cb: wifi_action_rx_cb_t< Rx Callback to receive action frames
op_id: u8< Unique Identifier for operation provided by wifi driver
data_len: u32< Length of the appended Data
data: __IncompleteArrayField<u8>< Appended Data payload