[][src]Type Definition esp_idf_bindgen::wifi_csi_cb_t

type wifi_csi_cb_t = Option<unsafe extern "C" fn(ctx: *mut c_void, data: *mut wifi_csi_info_t)>;

@brief The RX callback function of Channel State Information(CSI) data.

   Each time a CSI data is received, the callback function will be called.

@param ctx context argument, passed to esp_wifi_set_csi_rx_cb() when registering callback function. @param data CSI data received. The memory that it points to will be deallocated after callback function returns.