From 9f938ab8ba5af561bd44dbc7142f338ce317a01a Mon Sep 17 00:00:00 2001 From: Sadeep Madurange Date: Sat, 1 Nov 2025 09:46:52 +0800 Subject: Etlas project. --- esp32/build/flasher_args.json | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 esp32/build/flasher_args.json (limited to 'esp32/build/flasher_args.json') diff --git a/esp32/build/flasher_args.json b/esp32/build/flasher_args.json new file mode 100644 index 0000000..9acfc6c --- /dev/null +++ b/esp32/build/flasher_args.json @@ -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" : "atlas.bin", + "0x8000" : "partition_table/partition-table.bin" + }, + "bootloader" : { "offset" : "0x1000", "file" : "bootloader/bootloader.bin", "encrypted" : "false" }, + "app" : { "offset" : "0x10000", "file" : "atlas.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" + } +} -- cgit v1.2.3