esp32_shock/build/flasher_args.json

27 lines
1.0 KiB
JSON
Raw Normal View History

2024-04-27 09:15:55 +08:00
{
"write_flash_args" : [ "--flash_mode", "dio",
2024-04-29 17:35:50 +08:00
"--flash_size", "4MB",
2024-04-27 09:15:55 +08:00
"--flash_freq", "80m" ],
"flash_settings" : {
"flash_mode": "dio",
2024-04-29 17:35:50 +08:00
"flash_size": "4MB",
2024-04-27 09:15:55 +08:00
"flash_freq": "80m"
},
"flash_files" : {
"0x0" : "bootloader/bootloader.bin",
"0x10000" : "esp32_shock.bin",
2024-04-29 17:35:50 +08:00
"0x8000" : "partition_table/partition-table.bin",
"0xd000" : "ota_data_initial.bin"
2024-04-27 09:15:55 +08:00
},
"bootloader" : { "offset" : "0x0", "file" : "bootloader/bootloader.bin", "encrypted" : "false" },
"app" : { "offset" : "0x10000", "file" : "esp32_shock.bin", "encrypted" : "false" },
"partition-table" : { "offset" : "0x8000", "file" : "partition_table/partition-table.bin", "encrypted" : "false" },
2024-04-29 17:35:50 +08:00
"otadata" : { "offset" : "0xd000", "file" : "ota_data_initial.bin", "encrypted" : "false" },
2024-04-27 09:15:55 +08:00
"extra_esptool_args" : {
"after" : "hard_reset",
"before" : "default_reset",
"stub" : true,
"chip" : "esp32s3"
}
}