Open
Conversation
Add Platform.h abstraction layer enabling ESP-IDF alongside Arduino: - millis(), random(), Stream, IPAddress implementations for ESP-IDF - ESP-IDF WiFi functions using esp_wifi.h and esp_netif.h - PROGMEM/pgm_read_byte fallback macros for ESP-IDF - Conditional __FlashStringHelper in Log.h Enables use with ESPHome's ESP-IDF backend for MQTT TLS support. Tested on ESP32-C3.
16 tasks
|
Also tested it successfully on ESP32-C6. |
|
@dudanov thoughts on getting this merged? Thanks! |
Owner
… for chips without WiFi
swoboda1337
reviewed
Mar 12, 2026
| #ifdef ARDUINO_ARCH_ESP8266 | ||
| // ESP8266 always has WiFi | ||
| #define HAS_WIFI 1 | ||
| #elif defined(ESP32) |
There was a problem hiding this comment.
I believe ESP32 is only defined by Arduino. On pure ESP-IDF this wont be defined so you'll always get HAS_WIFI 0 even on chips with wifi. Should use CONFIG_IDF_TARGET_ESP32 or just check SOC_WIFI_SUPPORTED directly without the Arduino guard:
Suggested change
| #elif defined(ESP32) | |
| #elif __has_include("soc/soc_caps.h") | |
| #include "soc/soc_caps.h" | |
| #ifdef SOC_WIFI_SUPPORTED | |
| #define HAS_WIFI 1 | |
| #else | |
| #define HAS_WIFI 0 | |
| #endif |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Add Platform.h abstraction layer enabling ESP-IDF framework alongside Arduino:
millis(),random(),Stream,IPAddressimplementations for ESP-IDFesp_wifi.handesp_netif.hPROGMEM/pgm_read_bytefallback macros for ESP-IDF__FlashStringHelperin Log.hTested on ESP32-C3.