Tag: C++
C++ is a high-level programming language that offers both procedural and object-oriented features, known for its efficiency, flexibility, and widespread use in software development.
-
How to decode the exception backtrace of an ESP32
When the execution of code on an ESP32 throws an exception, the output might look like this: The Espressif tools contain a binary called xtensa-esp32-elf-addr2line which will decode the backtrace addresses and return details about the source files, lines and function names, etc. To run the tool, call: In the command above, simply…