chore: sync local state

This commit is contained in:
2025-12-16 09:12:17 +02:00
parent 7f7195a213
commit 05193dda35
1250 changed files with 45860 additions and 36013 deletions

View File

@@ -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

View File

@@ -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()

View File

@@ -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"
}
}