chore: sync local state
This commit is contained in:
@@ -1,2 +1,2 @@
|
||||
--flash_mode dio --flash_freq 80m --flash_size 4MB
|
||||
--flash_mode dio --flash_freq 80m --flash_size 2MB
|
||||
0x10000 $<TARGET_PROPERTY:__idf_build_target,EXECUTABLE_NAME>.bin
|
||||
@@ -34,6 +34,6 @@ endif()
|
||||
|
||||
# Set default install directory permissions.
|
||||
if(NOT DEFINED CMAKE_OBJDUMP)
|
||||
set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32s2-elf-objdump.exe")
|
||||
set(CMAKE_OBJDUMP "C:/Espressif/tools/xtensa-esp-elf/esp-13.2.0_20230928/xtensa-esp-elf/bin/xtensa-esp32s3-elf-objdump.exe")
|
||||
endif()
|
||||
|
||||
|
||||
@@ -1,26 +1,24 @@
|
||||
{
|
||||
"write_flash_args" : [ "--flash_mode", "dio",
|
||||
"--flash_size", "4MB",
|
||||
"--flash_size", "2MB",
|
||||
"--flash_freq", "80m" ],
|
||||
"flash_settings" : {
|
||||
"flash_mode": "dio",
|
||||
"flash_size": "4MB",
|
||||
"flash_size": "2MB",
|
||||
"flash_freq": "80m"
|
||||
},
|
||||
"flash_files" : {
|
||||
"0x1000" : "bootloader/bootloader.bin",
|
||||
"0x0" : "bootloader/bootloader.bin",
|
||||
"0x10000" : "$<TARGET_PROPERTY:__idf_build_target,EXECUTABLE_NAME>.bin",
|
||||
"0x8000" : "partition_table/partition-table.bin",
|
||||
"0xd000" : "ota_data_initial.bin"
|
||||
"0x8000" : "partition_table/partition-table.bin"
|
||||
},
|
||||
"bootloader" : { "offset" : "0x1000", "file" : "bootloader/bootloader.bin", "encrypted" : "false" },
|
||||
"bootloader" : { "offset" : "0x0", "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" },
|
||||
"otadata" : { "offset" : "0xd000", "file" : "ota_data_initial.bin", "encrypted" : "false" },
|
||||
"extra_esptool_args" : {
|
||||
"after" : "hard_reset",
|
||||
"before" : "default_reset",
|
||||
"stub" : true,
|
||||
"chip" : "esp32s2"
|
||||
"chip" : "esp32s3"
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user