[][src]Function esp_idf_bindgen::esp_wifi_set_event_mask

pub unsafe extern "C" fn esp_wifi_set_event_mask(mask: u32) -> esp_err_t

@brief Set mask to enable or disable some WiFi events

@attention 1. Mask can be created by logical OR of various WIFI_EVENT_MASK_ constants. Events which have corresponding bit set in the mask will not be delivered to the system event handler. @attention 2. Default WiFi event mask is WIFI_EVENT_MASK_AP_PROBEREQRECVED. @attention 3. There may be lots of stations sending probe request data around. Don't unmask this event unless you need to receive probe request data.

@param mask WiFi event mask.

@return