wheel/build/flasher_args.json

25 lines
901 B
JSON
Raw Normal View History

2024-01-20 17:56:00 +08:00
{
"write_flash_args" : [ "--flash_mode", "dio",
"--flash_size", "2MB",
2024-01-22 14:21:12 +08:00
"--flash_freq", "80m" ],
2024-01-20 17:56:00 +08:00
"flash_settings" : {
"flash_mode": "dio",
"flash_size": "2MB",
2024-01-22 14:21:12 +08:00
"flash_freq": "80m"
2024-01-20 17:56:00 +08:00
},
"flash_files" : {
2024-01-22 14:21:12 +08:00
"0x0" : "bootloader/bootloader.bin",
2024-01-22 03:36:10 +08:00
"0x10000" : "wheel.bin",
2024-01-20 17:56:00 +08:00
"0x8000" : "partition_table/partition-table.bin"
},
2024-01-22 14:21:12 +08:00
"bootloader" : { "offset" : "0x0", "file" : "bootloader/bootloader.bin", "encrypted" : "false" },
2024-01-22 03:36:10 +08:00
"app" : { "offset" : "0x10000", "file" : "wheel.bin", "encrypted" : "false" },
2024-01-20 17:56:00 +08:00
"partition-table" : { "offset" : "0x8000", "file" : "partition_table/partition-table.bin", "encrypted" : "false" },
"extra_esptool_args" : {
"after" : "hard_reset",
"before" : "default_reset",
"stub" : true,
2024-01-22 14:21:12 +08:00
"chip" : "esp32s3"
2024-01-20 17:56:00 +08:00
}
}