You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The new ESP_ARDUINO_VERSION macro can't be used yet to distinguish 2.0.0 from 2.0.1-RC1 and 2.0.1.
Something is probably missing in the build scripts to increment the values.
[edit]
I'm using this macro to distinguish versions:
#if defined ESP_ARDUINO_VERSION_VAL#if__has_include("core_version.h") // for platformio#include"core_version.h"#endif#ifESP_ARDUINO_VERSION_VAL(2,0,1) >= ESP_ARDUINO_VERSION||ARDUINO_ESP32_GIT_VER==0x15bbd0a||ARDUINO_ESP32_GIT_VER==0xd218e58f||ARDUINO_ESP32_GIT_VER==0xcaef400f#pragma message "Filesystem can create subfolders on file creation"
#defineFS_CAN_CREATE_PATH#endif#endif