flasher_args.json.in 1.1 KB

1234567891011121314151617181920212223242526
  1. {
  2. "write_flash_args" : [ "--flash_mode", "dio",
  3. "--flash_size", "16MB",
  4. "--flash_freq", "80m" ],
  5. "flash_settings" : {
  6. "flash_mode": "dio",
  7. "flash_size": "16MB",
  8. "flash_freq": "80m"
  9. },
  10. "flash_files" : {
  11. "0x0" : "bootloader/bootloader.bin",
  12. "0x10000" : "$<TARGET_PROPERTY:__idf_build_target,EXECUTABLE_NAME>.bin",
  13. "0x8000" : "partition_table/partition-table.bin",
  14. "0x394000" : "srmodels/srmodels.bin"
  15. },
  16. "bootloader" : { "offset" : "0x0", "file" : "bootloader/bootloader.bin", "encrypted" : "false" },
  17. "app" : { "offset" : "0x10000", "file" : "$<TARGET_PROPERTY:__idf_build_target,EXECUTABLE_NAME>.bin", "encrypted" : "false" },
  18. "partition-table" : { "offset" : "0x8000", "file" : "partition_table/partition-table.bin", "encrypted" : "false" },
  19. "model" : { "offset" : "0x394000", "file" : "srmodels/srmodels.bin", "encrypted" : "false" },
  20. "extra_esptool_args" : {
  21. "after" : "hard_reset",
  22. "before" : "default_reset",
  23. "stub" : true,
  24. "chip" : "esp32s3"
  25. }
  26. }