mirror of
https://github.com/alexandrebobkov/ESP-Nodes.git
synced 2024-10-05 20:47:50 -04:00
27 lines
1.0 KiB
JSON
27 lines
1.0 KiB
JSON
{
|
|
"write_flash_args" : [ "--flash_mode", "dio",
|
|
"--flash_size", "4MB",
|
|
"--flash_freq", "80m" ],
|
|
"flash_settings" : {
|
|
"flash_mode": "dio",
|
|
"flash_size": "4MB",
|
|
"flash_freq": "80m"
|
|
},
|
|
"flash_files" : {
|
|
"0x0" : "bootloader/bootloader.bin",
|
|
"0x20000" : "ESP32-C3_Table-Lamp.bin",
|
|
"0x8000" : "partition_table/partition-table.bin",
|
|
"0x16000" : "ota_data_initial.bin"
|
|
},
|
|
"bootloader" : { "offset" : "0x0", "file" : "bootloader/bootloader.bin", "encrypted" : "false" },
|
|
"app" : { "offset" : "0x20000", "file" : "ESP32-C3_Table-Lamp.bin", "encrypted" : "false" },
|
|
"partition-table" : { "offset" : "0x8000", "file" : "partition_table/partition-table.bin", "encrypted" : "false" },
|
|
"otadata" : { "offset" : "0x16000", "file" : "ota_data_initial.bin", "encrypted" : "false" },
|
|
"extra_esptool_args" : {
|
|
"after" : "hard_reset",
|
|
"before" : "default_reset",
|
|
"stub" : true,
|
|
"chip" : "esp32c3"
|
|
}
|
|
}
|