diff options
Diffstat (limited to 'esp32/build/esp-idf/esptool_py/flasher_args.json.in')
| -rw-r--r-- | esp32/build/esp-idf/esptool_py/flasher_args.json.in | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/esp32/build/esp-idf/esptool_py/flasher_args.json.in b/esp32/build/esp-idf/esptool_py/flasher_args.json.in new file mode 100644 index 0000000..bdc7d3d --- /dev/null +++ b/esp32/build/esp-idf/esptool_py/flasher_args.json.in @@ -0,0 +1,24 @@ +{ + "write_flash_args" : [ "--flash_mode", "dio", + "--flash_size", "detect", + "--flash_freq", "40m" ], + "flash_settings" : { + "flash_mode": "dio", + "flash_size": "detect", + "flash_freq": "40m" + }, + "flash_files" : { + "0x1000" : "bootloader/bootloader.bin", + "0x10000" : "$<TARGET_PROPERTY:__idf_build_target,EXECUTABLE_NAME>.bin", + "0x8000" : "partition_table/partition-table.bin" + }, + "bootloader" : { "offset" : "0x1000", "file" : "bootloader/bootloader.bin", "encrypted" : "false" }, + "app" : { "offset" : "0x10000", "file" : "$<TARGET_PROPERTY:__idf_build_target,EXECUTABLE_NAME>.bin", "encrypted" : "false" }, + "partition-table" : { "offset" : "0x8000", "file" : "partition_table/partition-table.bin", "encrypted" : "false" }, + "extra_esptool_args" : { + "after" : "hard_reset", + "before" : "default_reset", + "stub" : true, + "chip" : "esp32" + } +} |
