esp/bme680-demo/build/flasher_args.json
2026-06-24 23:13:57 +02:00

25 lines
917 B
JSON

{
"write_flash_args" : [ "--flash-mode", "dio",
"--flash-size", "4MB",
"--flash-freq", "40m" ],
"flash_settings" : {
"flash_mode": "dio",
"flash_size": "4MB",
"flash_freq": "40m"
},
"flash_files" : {
"0x1000" : "bootloader/bootloader.bin",
"0x8000" : "partition_table/partition-table.bin",
"0x10000" : "bme680-demo.bin"
},
"bootloader" : { "offset" : "0x1000", "file" : "bootloader/bootloader.bin", "encrypted" : "false" },
"partition-table" : { "offset" : "0x8000", "file" : "partition_table/partition-table.bin", "encrypted" : "false" },
"app" : { "offset" : "0x10000", "file" : "bme680-demo.bin", "encrypted" : "false" },
"extra_esptool_args" : {
"after" : "hard-reset",
"before" : "default-reset",
"stub" : true,
"chip" : "esp32"
}
}