Просмотр исходного кода

eth2ap: Fix eth2ap example crash issue

Closes https://github.com/espressif/esp-idf/issues/7260
yuanjm 4 лет назад
Родитель
Сommit
19f96b0e4f
1 измененных файлов с 1 добавлено и 2 удалено
  1. 1 2
      examples/ethernet/eth2ap/main/ethernet_example_main.c

+ 1 - 2
examples/ethernet/eth2ap/main/ethernet_example_main.c

@@ -278,7 +278,6 @@ void app_main(void)
     ESP_ERROR_CHECK(ret);
     ESP_ERROR_CHECK(esp_event_loop_create_default());
     ESP_ERROR_CHECK(initialize_flow_control());
-
-    initialize_ethernet();
     initialize_wifi();
+    initialize_ethernet();
 }