fix(esp_wifi): Support for esp_wifi_remote

This commit is contained in:
David Cermak
2023-11-24 16:28:05 +01:00
parent c0b3af2292
commit 344cb342b8
11 changed files with 69 additions and 20 deletions

View File

@@ -24,6 +24,11 @@
#include "esp_event.h"
#include "cmd_wifi.h"
/**
* This component will be supported using esp_wifi_remote
*/
#if CONFIG_SOC_WIFI_SUPPORTED
#define JOIN_TIMEOUT_MS (10000)
static EventGroupHandle_t wifi_event_group;
@@ -134,3 +139,5 @@ void register_wifi(void)
ESP_ERROR_CHECK( esp_console_cmd_register(&join_cmd) );
}
#endif // CONFIG_SOC_WIFI_SUPPORTED