EspArduinoExceptionDecoder icon indicating copy to clipboard operation
EspArduinoExceptionDecoder copied to clipboard

Python Script to decode ESP8266 Exceptions.

Results 6 EspArduinoExceptionDecoder issues
Sort by recently updated
recently updated
newest added

The tool fails miserably and prints the following error: ERROR: addr2line not found (/home/user/.platformio/packages/toolchain-xtensa/bin/xtensa-lx106-elf-addr2line) ERROR: Parser not complete

Partially fixes #4 (backtrace decoding). Registers decoding is not done yet. Signed-off-by: Alexandr Zarubkin

Running python .\decoder.py -p ESP32 -t "\~/.platformio/packages/toolchain-xtensa32" -e "\~\firmware.elf" -f .\st1.txt --stack Contents of st1.txt is ``` Guru Meditation Error: Core 1 panic'ed (Cache disabled but cached memory region accessed)...

Got this on Linuxmint 18.3: `Traceback (most recent call last):` ` File "../../EspArduinoExceptionDecoder/decoder.py", line 305, in ` ` resolver.fill(parser)` ` File "../../EspArduinoExceptionDecoder/decoder.py", line 190, in fill` ` self._lookup(addresses)` ` File...

As the question in #2 shows the `--stack_only` needs to be mentioned and explained in the documentation.

Tell me, can this tool decode backtrace? `Backtrace: 0x400837c1:0x3ffb1f10 0x4008cca1:0x3ffb1f30 0x40092749:0x3ffb1f50 0x40083cfe:0x3ffb2080 0x40092779:0x3ffb20a0 0x400ea0be:0x3ffb20c0 0x400ea0cd:0x3ffb20e0 0x400d3905:0x3ffb2100 0x400dc8a6:0x3ffb2210 0x400ec659:0x3ffb2290` And in general, can I use the tool without a toolchain? I...