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

@ -1,8 +1,11 @@
{
// See http://go.microsoft.com/fwlink/?LinkId=827846
// for the documentation about the extensions.json format
"recommendations": [
"ms-vscode.cpptools",
"platformio.platformio-ide"
]
}
{
// See http://go.microsoft.com/fwlink/?LinkId=827846
// for the documentation about the extensions.json format
"recommendations": [
"ms-vscode.cpptools",
"platformio.platformio-ide"
],
"unwantedRecommendations": [
"ms-vscode.cpptools-extension-pack"
]
}

View File

@ -17,6 +17,10 @@
### Services
- 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
@ -30,6 +34,9 @@
- Hide cursor during `antiburn` and `idle` if the pointer is enabled
- Screenshot images now display properly in Safari on macOS/iOS (thanks @masto)
### MQTT
- Remember last `page` id for mqtt messages
### Objects
- `img.src` now accepts both `http` and `https` urls (thanks @htvekov)
- `img.src` now accepts `png` and `binary` image urls, PSram is *highly* recommended
@ -53,8 +60,6 @@
- Expose the device URL in discovery message
### 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
- **Breaking:** Removed support for ESP8266!

View File

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