Arduino Core 3.3.6

This commit is contained in:
Jason2866
2026-01-22 00:13:43 +01:00
parent 879780c5a9
commit aa6e97c918
41 changed files with 4345 additions and 153 deletions
+12
View File
@@ -0,0 +1,12 @@
# SPIFFS Test Data
This directory contains test files that will be included in the SPIFFS filesystem image.
## Files
- `test.txt` - Simple text file
- `README.md` - This file
- `platformio.ini` - Copy of project configuration
- `partitions.csv` - Copy of partition table
These files will be flashed to the ESP32's SPIFFS partition and can be read by the firmware.
@@ -0,0 +1,6 @@
# Name, Type, SubType, Offset, Size, Flags
nvs, data, nvs, 0x9000, 0x5000,
otadata, data, ota, 0xe000, 0x2000,
app0, app, ota_0, 0x10000, 0x140000,
app1, app, ota_1, 0x150000,0x140000,
spiffs, data, spiffs, 0x290000,0x170000,
1 # Name Type SubType Offset Size Flags
2 nvs data nvs 0x9000 0x5000
3 otadata data ota 0xe000 0x2000
4 app0 app ota_0 0x10000 0x140000
5 app1 app ota_1 0x150000 0x140000
6 spiffs data spiffs 0x290000 0x170000
@@ -0,0 +1,6 @@
[env:esp32dev]
platform = espressif32
framework = arduino
board = esp32dev
board_build.filesystem = spiffs
board_build.partitions = partitions.csv
+2
View File
@@ -0,0 +1,2 @@
Hello from SPIFFS!
This is a test file.