File tree Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change 9
9
spiffsData = open ("spiffs/spiffs.bin" , "rb" ).read ()
10
10
certsData = open ("UNOR4USBBridge/build/esp32-patched.esp32.arduino_unor4wifi_usb_bridge/x509_crt_bundle" , "rb" ).read ()
11
11
12
- # 0x000000 bootloader
13
- # 0x008000 partitions
14
- # 0x009000 boot_app/otadata
15
- # 0x00B000 certs
16
- # 0x050000 app0
17
- # 0x1E0000 app1
18
- # 0x370000 spiffs
19
- # 0x3F0000 nvs
20
- # 0x3F5000 coredump
12
+ # Offset Size Name
13
+ # 0x000000 0x008000 bootloader
14
+ # 0x008000 0x001000 partitions
15
+ # 0x009000 0x002000 boot_app/otadata
16
+ # 0x00B000 0x045000 certs
17
+ # 0x050000 0x190000 app0
18
+ # 0x1E0000 0x190000 app1
19
+ # 0x370000 0x080000 spiffs
20
+ # 0x3F0000 0x010000 nvs
21
21
22
22
# calculate the output binary size included nvs
23
- outputSize = 0x3F5000
23
+ outputSize = 0x400000
24
24
25
25
# allocate and init to 0xff
26
26
outputData = bytearray (b'\xff ' ) * outputSize
You can’t perform that action at this time.
0 commit comments