Skip to content

Commit

Permalink
Coexist raw APIs
Browse files Browse the repository at this point in the history
  • Loading branch information
ivmarkov committed Sep 21, 2024
1 parent 41fd104 commit 6c30eb0
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/include/esp-idf/bindings.h
Original file line number Diff line number Diff line change
Expand Up @@ -113,6 +113,16 @@
#include "esp_now.h"
#include "esp_mesh.h"
#include "esp_wpa2.h"
#if (ESP_IDF_VERSION_MAJOR < 5 || ESP_IDF_VERSION_MAJOR == 5 && ESP_IDF_VERSION_MINOR < 1)
#include "esp_coexist.h"
#endif
#endif

#if defined(ESP_IDF_COMP_ESP_COEX_ENABLED) && (ESP_IDF_VERSION_MAJOR > 5 || ESP_IDF_VERSION_MAJOR == 5 && ESP_IDF_VERSION_MINOR >= 1)
#include "esp_coexist.h"
#ifdef CONFIG_SOC_IEEE802154_SUPPORTED
#include "esp_coex_i154.h"
#endif
#endif

#ifdef ESP_IDF_COMP_WPA_SUPPLICANT_ENABLED
Expand Down

0 comments on commit 6c30eb0

Please sign in to comment.