diff options
Diffstat (limited to 'fw/esp32/main')
-rw-r--r-- | fw/esp32/main/app_main.c | 14 |
1 files changed, 11 insertions, 3 deletions
diff --git a/fw/esp32/main/app_main.c b/fw/esp32/main/app_main.c index 4babcdc..8374c45 100644 --- a/fw/esp32/main/app_main.c +++ b/fw/esp32/main/app_main.c @@ -1,9 +1,11 @@ #include <freertos/FreeRTOS.h> #include <freertos/task.h> -#include <tcpip_adapter.h> #include <driver/gpio.h> -#include <esp_sleep.h> +#include <esp_event.h> +#include <esp_netif.h> +#include <esp_err.h> +#include <esp_log.h> #include "i2c.h" #include "cell.h" @@ -17,7 +19,13 @@ // Main application void app_main() { - tcpip_adapter_init(); + esp_err_t ret; + + ret = esp_netif_init(); + assert(ret == ESP_OK); + + ret = esp_event_loop_create_default(); + assert(ret == ESP_OK); eos_net_init(); |