finish project

This commit is contained in:
2024-05-15 18:57:11 +03:00
parent ccbffe76cc
commit df1536fd6f
62 changed files with 17547 additions and 73841 deletions

View File

@@ -1,2 +1,2 @@
--flash_mode dio --flash_freq 80m --flash_size 2MB
--flash_mode dio --flash_freq 80m --flash_size 4MB
0x10000 $<TARGET_PROPERTY:__idf_build_target,EXECUTABLE_NAME>.bin

View File

@@ -1,20 +1,22 @@
{
"write_flash_args" : [ "--flash_mode", "dio",
"--flash_size", "2MB",
"--flash_size", "4MB",
"--flash_freq", "80m" ],
"flash_settings" : {
"flash_mode": "dio",
"flash_size": "2MB",
"flash_size": "4MB",
"flash_freq": "80m"
},
"flash_files" : {
"0x1000" : "bootloader/bootloader.bin",
"0x10000" : "$<TARGET_PROPERTY:__idf_build_target,EXECUTABLE_NAME>.bin",
"0x8000" : "partition_table/partition-table.bin"
"0x8000" : "partition_table/partition-table.bin",
"0xd000" : "ota_data_initial.bin"
},
"bootloader" : { "offset" : "0x1000", "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",