SDSPI fix for ESP32-C5: correct API v5.5, CMake dependencies, pin mapping

This commit is contained in:
Clawdia
2026-05-09 17:59:43 +02:00
parent 240a374148
commit 913b33d839
1519 changed files with 210337 additions and 610 deletions
+24
View File
@@ -0,0 +1,24 @@
{
"write_flash_args" : [ "--flash_mode", "dio",
"--flash_size", "2MB",
"--flash_freq", "80m" ],
"flash_settings" : {
"flash_mode": "dio",
"flash_size": "2MB",
"flash_freq": "80m"
},
"flash_files" : {
"0x2000" : "bootloader/bootloader.bin",
"0x10000" : "v2x_sniffer.bin",
"0x8000" : "partition_table/partition-table.bin"
},
"bootloader" : { "offset" : "0x2000", "file" : "bootloader/bootloader.bin", "encrypted" : "false" },
"app" : { "offset" : "0x10000", "file" : "v2x_sniffer.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" : false,
"chip" : "esp32c5"
}
}