initial commit

This commit is contained in:
feeling001@gmail.com
2026-06-08 14:33:53 +02:00
commit a7eb474a97
8 changed files with 686 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
# Partition table for ESP32-S3 4 MB flash
# Adapted for LittleFS (no OTA to keep a large FS partition)
#
# 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,
littlefs, data, spiffs, 0x290000, 0x160000,
coredump, data, coredump,0x3F0000, 0x10000,
1 # Partition table for ESP32-S3 – 4 MB flash
2 # Adapted for LittleFS (no OTA to keep a large FS partition)
3 #
4 # Name, Type, SubType, Offset, Size, Flags
5 nvs, data, nvs, 0x9000, 0x5000,
6 otadata, data, ota, 0xe000, 0x2000,
7 app0, app, ota_0, 0x10000, 0x140000,
8 app1, app, ota_1, 0x150000, 0x140000,
9 littlefs, data, spiffs, 0x290000, 0x160000,
10 coredump, data, coredump,0x3F0000, 0x10000,