Skip to content

Commit

Permalink
Merge branch 'c5_c61' into 'master'
Browse files Browse the repository at this point in the history
Add support for esp32c5 and esp32c61

Closes IDF-8611 and IDF-9226

See merge request espressif/esp-idf-panic-decoder!7
  • Loading branch information
dobairoland committed May 20, 2024
2 parents f4931fd + 23cdea9 commit 76d345b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions esp_idf_panic_decoder/gdb_panic_server.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@
'esp32c6': GDB_REGS_INFO_RISCV_ILP32,
'esp32h2': GDB_REGS_INFO_RISCV_ILP32,
'esp32p4': GDB_REGS_INFO_RISCV_ILP32,
'esp32c5': GDB_REGS_INFO_RISCV_ILP32,
'esp32c61': GDB_REGS_INFO_RISCV_ILP32,
}

PanicInfo = namedtuple('PanicInfo', 'core_id regs stack_base_addr stack_data')
Expand Down Expand Up @@ -159,6 +161,8 @@ def parse_idf_riscv_panic_output(panic_text): # type: (str) -> PanicInfo
'esp32c6': parse_idf_riscv_panic_output,
'esp32h2': parse_idf_riscv_panic_output,
'esp32p4': parse_idf_riscv_panic_output,
'esp32c5': parse_idf_riscv_panic_output,
'esp32c61': parse_idf_riscv_panic_output,
}


Expand Down

0 comments on commit 76d345b

Please sign in to comment.