2022-03-09 01:47:24 -08:00
---
2022-03-09 04:10:04 -08:00
id: stacktrace-decode
title: Decoding Stacktraces
sidebar_label: Decoding Stacktraces
2022-03-09 01:47:24 -08:00
---
You may encounter a situation where your device crashes and are left with a stacktrace, below are two methods of decoding them.
## Manual
:::info
This method uses the symbols of the `firmware.elf` file generated from your latest build, you may wish to rebuild to get up-to-date symbols.
:::
2022-03-09 04:10:04 -08:00
First save the backtrace string to a text file:
```text title="backtrace.txt"
2022-03-09 01:47:24 -08:00
Backtrace: 0x....
```
Now run the exception decoder:
2022-04-01 06:34:49 -07:00
```shell
2022-03-09 01:47:24 -08:00
bin/exception_decoder.py backtrace.txt
```
## Real Time
In order to decode stack traces in real time, kep the following command (replacing `DEVICE_PORT` with your device's port) running in your terminal with the suspect device connected
2022-04-01 06:34:49 -07:00
```shell
2022-03-09 01:47:24 -08:00
pio device monitor --port DEVICE_PORT -f esp32_exception_decoder
```