janLo / EspArduinoExceptionDecoder

Python Script to decode ESP8266 Exceptions.
GNU General Public License v3.0
59 stars 25 forks source link

.... at ??:? #7

Closed amir-hg closed 5 years ago

amir-hg commented 5 years ago

hi I could decode the stack but the end of all of my results is like at ??:?

ubuntu 18.04 LTS PlatformIO 3.6.2 espressif8266 1.8.0 ESP8266

janLo commented 5 years ago

This sounds like the (debug-)information is just missing from the binary.

amir-hg commented 5 years ago

Do you have any suggestion to fix it ?

janLo commented 5 years ago

In your platformio.ini in the environemt put:

build_flags = -ggdb3

or at least:

build_flags = -g

This should not affect the built firmware as this gets stripped anyway.