- New board Lifely Agrumino Lemon v4
- Updated Arduino Core to the latest
v3.0.0
(release notes) - Updated toolchain packages to the latest
v10.2.0
- Minor improvements
Breaking changes
The latest Arduino Core v3.0.0
is a major release that brings several breaking changes including removed and significantly changed APIs. Many popular libraries are not synchronized with these changes which may lead to non-obvious compilation and linker errors. Please thoroughly examine the summary of the changes in the release notes before updating the platform. In case your projects are not compilable after the update, you can always roll back to the previous version of the platform, for example:
[env:espresso_lite_v2]
platform = espressif8266@^2
framework = arduino
board = espresso_lite_v2
MMU configuration
This release introduces new configuration defines that allow adjusting the ICACHE
to IRAM
ratio, for example:
[env:espresso_lite_v2]
platform = espressif8266
framework = arduino
board = espresso_lite_v2
build_flags =
; 16KB Cache + 48KB IRAM and 2nd Heap (shared)
-DPIO_FRAMEWORK_ARDUINO_MMU_CACHE16_IRAM48_SECHEAP_SHARED
More information and alternative configurations can be found in the official documentation for the ESP8266 dev-platform.