If building with
platform_packages =
toolchain-xtensa32@3.80200.200512
framework-arduinoespressif32 @ https://github.com/espressif/arduino-esp32.git#idf-release/v4.0
it wont compile because of:
SmartLeds.h:111:34: error: 'DPORT_PERIP_CLK_EN_REG' was not declared in this scope
it seems that v4.0 is missing libraries. To fix it you need to add:
#include <soc/dport_reg.h>
to the Arduino-if.
If building with
it wont compile because of:
it seems that v4.0 is missing libraries. To fix it you need to add:
to the Arduino-if.