]> granicus.if.org Git - esp-idf/commitdiff
wifi: don’t disable event handling for SoftAP
authorIvan Grokhotkov <ivan@espressif.com>
Tue, 9 Apr 2019 04:09:56 +0000 (12:09 +0800)
committerIvan Grokhotkov <ivan@espressif.com>
Thu, 11 Apr 2019 04:05:27 +0000 (12:05 +0800)
Events are needed to initialise the tcpip_adapter and start the DHCP server

components/esp_wifi/test/test_wifi.c

index 7b2c4e4b3f57e641c1790643e10f468f89fef5d5..08996d9de3a5d13e14ecbdc01735d7fb941940e3 100644 (file)
@@ -142,15 +142,9 @@ TEST_CASE("wifi stop and deinit","[wifi]")
     TEST_IGNORE_MESSAGE("this test case is ignored due to the critical memory leak of tcpip_adapter and event_loop.");
 }
 
-static esp_err_t event_send_dummy(system_event_t *event)
-{
-    return ESP_OK;
-}
-
 static void start_wifi_as_softap(void)
 {
     wifi_init_config_t cfg = WIFI_INIT_CONFIG_DEFAULT();
-    cfg.event_handler = &event_send_dummy;
     cfg.nvs_enable = false;
 
     wifi_config_t w_config = {