Working zigbee generic, connected to network and HA
This commit is contained in:
20
build/gdbinit/symbols
Normal file
20
build/gdbinit/symbols
Normal file
@@ -0,0 +1,20 @@
|
||||
# Load esp32h2 ROM ELF symbols
|
||||
define target hookpost-remote
|
||||
set confirm off
|
||||
# if $_streq((char *) 0x4001c7dc, "Nov 1 2022")
|
||||
if (*(int*) 0x4001c7dc) == 0x20766f4e && (*(int*) 0x4001c7e0) == 0x32203120 && (*(int*) 0x4001c7e4) == 0x323230
|
||||
add-symbol-file C:/Users/Dell/.espressif/tools/esp-rom-elfs/20240305/esp32h2_rev0_rom.elf
|
||||
else
|
||||
echo Warning: Unknown esp32h2 ROM revision.\n
|
||||
end
|
||||
set confirm on
|
||||
end
|
||||
|
||||
|
||||
# Load bootloader symbols
|
||||
set confirm off
|
||||
add-symbol-file C:/Users/Dell/Documents/ESP/HA_on_off_light_zigbee/build/bootloader/bootloader.elf
|
||||
set confirm on
|
||||
|
||||
# Load application symbols
|
||||
file C:/Users/Dell/Documents/ESP/HA_on_off_light_zigbee/build/on_off_light_bulb.elf
|
||||
Reference in New Issue
Block a user