fix ble connection , ok !

This commit is contained in:
feeling001@gmail.com
2026-06-21 11:50:44 +02:00
parent c40d7516b1
commit d44aaa3318
13 changed files with 483 additions and 83 deletions
+15 -6
View File
@@ -2,9 +2,18 @@
# Flash size: 8 MB (Waveshare ESP32-S3-Zero has 8 MB flash)
#
# Name, Type, SubType, Offset, Size, Flags
nvs, data, nvs, 0x9000, 0x5000,
otadata, data, ota, 0xe000, 0x2000,
app0, app, ota_0, 0x10000, 0x180000,
app1, app, ota_1, 0x190000, 0x180000,
littlefs, data, spiffs, 0x310000, 0x100000,
coredump, data, coredump, 0x410000, 0x10000,
# nvs, data, nvs, 0x9000, 0x5000,
# otadata, data, ota, 0xe000, 0x2000,
# app0, app, ota_0, 0x10000, 0x180000,
# app1, app, ota_1, 0x190000, 0x180000,
# littlefs, data, spiffs, 0x310000, 0x100000,
# coredump, data, coredump, 0x410000, 0x10000,
# 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,0x160000,
coredump,data,coredump,0x3F0000,0x10000,
1 # Marine Display — Custom Partition Table
2 # Flash size: 8 MB (Waveshare ESP32-S3-Zero has 8 MB flash)
3 #
4 # Name, Type, SubType, Offset, Size, Flags
5 nvs, data, nvs, 0x9000, 0x5000, # nvs, data, nvs, 0x9000, 0x5000,
6 otadata, data, ota, 0xe000, 0x2000, # otadata, data, ota, 0xe000, 0x2000,
7 app0, app, ota_0, 0x10000, 0x180000, # app0, app, ota_0, 0x10000, 0x180000,
8 app1, app, ota_1, 0x190000, 0x180000, # app1, app, ota_1, 0x190000, 0x180000,
9 littlefs, data, spiffs, 0x310000, 0x100000, # littlefs, data, spiffs, 0x310000, 0x100000,
10 coredump, data, coredump, 0x410000, 0x10000, # coredump, data, coredump, 0x410000, 0x10000,
11 # Name, Type, SubType, Offset, Size, Flags
12 nvs,data,nvs,0x9000,0x5000,
13 otadata,data,ota,0xE000,0x2000,
14 app0,app,ota_0,0x10000,0x140000,
15 app1,app,ota_1,0x150000,0x140000,
16 spiffs,data,spiffs,0x290000,0x160000,
17 coredump,data,coredump,0x3F0000,0x10000,
18
19