CITS Sniffer v2: ESP-IDF 5.5 Projektstruktur mit CMakeLists, sdkconfig, partitions_8M

This commit is contained in:
Clawdia
2026-05-18 14:20:53 +02:00
parent 9c1732c364
commit e11a375c54
303 changed files with 86363 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
# Connect to the default openocd-esp port and stop on app_main()
set remotetimeout 10
target remote :3333
monitor reset halt
maintenance flush register-cache
thbreak app_main
continue
+2
View File
@@ -0,0 +1,2 @@
source /home/claw/.openclaw/agents/wisp/workspace/cits-sniffer/build/gdbinit/symbols
source /home/claw/.openclaw/agents/wisp/workspace/cits-sniffer/build/gdbinit/connect
+1
View File
@@ -0,0 +1 @@
# There is no prefix map defined for the project.
+7
View File
@@ -0,0 +1,7 @@
# Add Python GDB extensions
python
try:
import freertos_gdb
except ModuleNotFoundError:
print('warning: python extension "freertos_gdb" not found.')
end
+20
View File
@@ -0,0 +1,20 @@
# Load esp32c5 ROM ELF symbols
define target hookpost-remote
set confirm off
# if $_streq((char *) 0x4004b3c4, "Mar 29 2024")
if (*(int*) 0x4004b3c4) == 0x2072614d && (*(int*) 0x4004b3c8) == 0x32203932 && (*(int*) 0x4004b3cc) == 0x343230
add-symbol-file /home/claw/.espressif/tools/esp-rom-elfs/20241011/esp32c5_rev0_rom.elf
else
echo Warning: Unknown esp32c5 ROM revision.\n
end
set confirm on
end
# Load bootloader symbols
set confirm off
add-symbol-file /home/claw/.openclaw/agents/wisp/workspace/cits-sniffer/build/bootloader/bootloader.elf
set confirm on
# Load application symbols
file /home/claw/.openclaw/agents/wisp/workspace/cits-sniffer/build/cits-sniffer.elf