esp32 CoreDump
• ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️
• 😊 快乐分享,享受记录 😊
• ❤️ ❤️ ❤️ ❤️ ❤️ ❤️ ❤️
文章目录
1.coredump介绍
当esp32运行程序时出现异常,会进入异常中断,导致复位重启。若配置了coredump,则会将错误信息存储到flash中,或者打印到串口上。
2.CSV文件配置分区信息表
3.执行menuconfig进入配置界面
4.coredump打印到串口
测试软件异常复位
串口打印如下:
将CORE DUMP START和CORE DUMP END之间的数据复制到文本中,命名为coredump.bin
用于解析
================= CORE DUMP START =================
****将之间的数据复制到文本中,命名为coredump.bin***
================= CORE DUMP END =================
5.coredump解析串口
espcoredump.py info_corefile -t b64 -c </path/to/saved/base64/text> </path/to/program/elf/file> 或者 espcoredump.py dbg_corefile -t b64 -c </path/to/saved/base64/text> </path/to/program/elf/file>
例:python E:/Esp32-SDK/SDK432/Gitee/esp-idf/components/espcoredump/espcoredump.py dbg_corefile -t b64 -c E:/coredump.txt E:/Esp32-SDK/SDK432/Gitee/esp-idf/examples/protocols/http_server/file_servinguart/build/file_server.elf
解析串口结果如下:
6.coredump存储到flash
选择flash,并执行编译
7.coredump读取flash并生成core.bin文件
指令如下,在执行指令的时候,一定要先进入boot下载模式。
python + esptool.py + 串口号 + read_flash + coredume存储的falsh地址 + 大小 + core.bin(最终要生成的文件,用于解析)
例:python E:/SDK432/Gitee/esp-idf/components/esptool_py/esptool/esptool.py --p COM3 read_flash 0x110000 0xFA00 /tmp/core.bin
下载之后如下图所示,会生成一个core.bin文件
8.coredump解析core.bin文件
python + espcoredump.py + info_corefile + --core + core.bin + --core-format raw + elf文件
例:python E:/SDK432/Gitee/esp-idf/components/espcoredump/espcoredump.py info_corefile --core /tmp/core.bin --core-format raw E:/SDK432/Gitee/esp-idf/examples/protocols/http_server/file_serving111/build/file_server.elf
如下图所示,若解析错误,说明环境有问题,可以更新xtensa-esp32-elf文件
正确解析结果如下,包含一些堆栈寄存器信息,以及具体出现异常的位置: