Arduino Core 3.3.6
This commit is contained in:
@@ -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,
|
||||
|
@@ -0,0 +1,6 @@
|
||||
[env:esp32dev]
|
||||
platform = espressif32
|
||||
framework = arduino
|
||||
board = esp32dev
|
||||
board_build.filesystem = spiffs
|
||||
board_build.partitions = partitions.csv
|
||||
@@ -0,0 +1,2 @@
|
||||
Hello from SPIFFS!
|
||||
This is a test file.
|
||||
Reference in New Issue
Block a user