Downgrade Arduino core to v1

This commit is contained in:
fvanroie 2022-02-24 10:10:32 +01:00
parent ec616daa80
commit d53130ce30
3 changed files with 21 additions and 13 deletions

View File

@ -4,5 +4,8 @@
"recommendations": [ "recommendations": [
"ms-vscode.cpptools", "ms-vscode.cpptools",
"platformio.platformio-ide" "platformio.platformio-ide"
],
"unwantedRecommendations": [
"ms-vscode.cpptools-extension-pack"
] ]
} }

View File

@ -17,6 +17,10 @@
### Services ### Services
- Add SimpleFTPServer to easily upload and download files to the plate *(one simultanious connection only)* - Add SimpleFTPServer to easily upload and download files to the plate *(one simultanious connection only)*
### Architecture
- Moved to Arduino 2.0.2 with native LittleFS library
- Moved to ESP-IDF 4.4 with fix for FragAttacks CVEs
## v0.6.3 ## v0.6.3
@ -30,6 +34,9 @@
- Hide cursor during `antiburn` and `idle` if the pointer is enabled - Hide cursor during `antiburn` and `idle` if the pointer is enabled
- Screenshot images now display properly in Safari on macOS/iOS (thanks @masto) - Screenshot images now display properly in Safari on macOS/iOS (thanks @masto)
### MQTT
- Remember last `page` id for mqtt messages
### Objects ### Objects
- `img.src` now accepts both `http` and `https` urls (thanks @htvekov) - `img.src` now accepts both `http` and `https` urls (thanks @htvekov)
- `img.src` now accepts `png` and `binary` image urls, PSram is *highly* recommended - `img.src` now accepts `png` and `binary` image urls, PSram is *highly* recommended
@ -53,8 +60,6 @@
- Expose the device URL in discovery message - Expose the device URL in discovery message
### Architecture ### Architecture
- Moved to Arduino 2.0.2 with native LittleFS library
- Moved to ESP-IDF 4.4 with fix for FragAttacks CVEs
- Prepare support for ESP32-S2 - Prepare support for ESP32-S2
- **Breaking:** Removed support for ESP8266! - **Breaking:** Removed support for ESP8266!

View File

@ -105,19 +105,19 @@ extra_scripts =
${esp32.extra_scripts} ${esp32.extra_scripts}
[esp32_4mb] [esp32_4mb]
extends = exp32, arduino_esp32_v2 extends = exp32, arduino_esp32_v1
board_upload.flash_size=4MB board_upload.flash_size=4MB
board_upload.maximum_size = 4194304 board_upload.maximum_size = 4194304
board_build.partitions = user_setups/esp32/partitions_4MB.csv board_build.partitions = user_setups/esp32/partitions_4MB.csv
[esp32_8mb] [esp32_8mb]
extends = exp32, arduino_esp32_v2 extends = exp32, arduino_esp32_v1
board_upload.flash_size=8MB board_upload.flash_size=8MB
board_upload.maximum_size = 8388608 board_upload.maximum_size = 8388608
board_build.partitions = user_setups/esp32/partitions_8MB.csv board_build.partitions = user_setups/esp32/partitions_8MB.csv
[esp32_16mb] [esp32_16mb]
extends = exp32, arduino_esp32_v2 extends = exp32, arduino_esp32_v1
board_upload.flash_size = 16MB board_upload.flash_size = 16MB
board_upload.maximum_size = 16777216 board_upload.maximum_size = 16777216
board_build.partitions = user_setups/esp32/partitions_16MB.csv board_build.partitions = user_setups/esp32/partitions_16MB.csv