mirror of
https://github.com/HASwitchPlate/openHASP.git
synced 2025-07-24 11:46:34 +00:00
Downgrade Arduino core to v1
This commit is contained in:
parent
ec616daa80
commit
d53130ce30
19
.vscode/extensions.json
vendored
19
.vscode/extensions.json
vendored
@ -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"
|
||||
]
|
||||
}
|
||||
|
@ -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!
|
||||
|
||||
|
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user