Solution of GDB issue "Program received signal SIG32, Real-time event 32."

今天客户使用gdb调试程序的时候出现问题。先是“no debugging symbols found",google下发现是因为程序使用strip去掉了debug信息。 然后gdb显示"Program received signal SIG32, Real-time event 32." 继续google后,发现是因为用到的lib库被strip掉了。但是可以使用下面折中的方法: 在dbg prompt后键入"handle SIG32 pass noprint nostop"即可。

开发板无网络如何下载程序

使用console口下载程序,首先确保busybox编译了rx。(minicom的通过X/Y/Zmodem收发也是调用rx)。 然后直接在console运行rx filename,接着在CRT选择Transfer->Send Xmodem,等待正常传输即成。 建议busybox至少编译tar,这样传输多个文件的时候可以打包传输。