forked from verybadsoldier/esp_rgbww_firmware
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtwo_roms_two_lfs_Esp32.hw
54 lines (54 loc) · 1.4 KB
/
two_roms_two_lfs_Esp32.hw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "two roms, two lfs partitions",
"comment": "Should work with any Esp32 variant",
"base_config": "single-rom-for-ota",
"options": [
"4m"
],
"partitions": {
"rom0": {
"device": "spiFlash",
"address": "0x010000",
"size": "1408K",
"type": "app",
"subtype": "ota_0",
"readonly": false,
"encrypted": false,
"filename": "$(TARGET_BIN)"
},
"lfs0": {
"device": "spiFlash",
"address": "0x00170000",
"size": "576K",
"type": "data",
"subtype": "littlefs",
"readonly": false,
"encrypted": false,
"filename": ""
},
"rom1": {
"device": "spiFlash",
"address": "0x00200000",
"size": "1408K",
"type": "app",
"subtype": "ota_1",
"readonly": false,
"encrypted": false,
"filename": ""
},
"lfs1": {
"device": "spiFlash",
"address": "0x00360000",
"size": "632K",
"type": "data",
"subtype": "littlefs",
"readonly": false,
"encrypted": false,
"filename": ""
},
"otadata": {
"device": "spiFlash",
"address": "0x003fe000"
}
}
}