From 2cf9cf301591eedbf5120ddaf2cfc33f2c2a3c75 Mon Sep 17 00:00:00 2001 From: Yotam Dayan Date: Thu, 23 Feb 2023 17:03:13 +0200 Subject: [PATCH] added bindings --- src/include/esp-idf/bindings.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/include/esp-idf/bindings.h b/src/include/esp-idf/bindings.h index da4b976a3d9..4564cd936df 100644 --- a/src/include/esp-idf/bindings.h +++ b/src/include/esp-idf/bindings.h @@ -4,7 +4,7 @@ #error Only ESP-IDF versions >= V4.3.2 are currently supported; if you are using the PIO build (the default one), wipe out your `.embuild` folder and try again with a clean rebuild #endif -//#include "esp_crc.h" +// #include "esp_crc.h" #include "esp_log.h" #include "esp_debug_helpers.h" @@ -112,6 +112,7 @@ #include "lwip/lwip_napt.h" #include "esp_sntp.h" #include "ping/ping_sock.h" +#include "lwip/apps/netbiosns.h" #endif #ifdef ESP_IDF_COMP_MBEDTLS_ENABLED @@ -136,6 +137,10 @@ #include "esp_http_client.h" #endif +#if defined(ESP_IDF_COMP_APP_UPDATE_ENABLED) && defined(ESP_IDF_COMP_ESP_HTTP_CLIENT_ENABLED) +#include "esp_https_ota.h" +#endif + #ifdef ESP_IDF_COMP_ESP_HTTP_SERVER_ENABLED #include "esp_http_server.h" #endif