微控制器的软调试器

发布于 2024-11-08 01:15:08 字数 187 浏览 0 评论 0原文

是否有针对微控制器(例如 PIC24)的软调试器(例如 GDB)?我的平台不运行 Linux,因此无法使用 GDB。我需要的不仅仅是一个调试器来记录数据,就像 CCP 所做的那样。

我有一个 PICKit2,但它不支持运行时监视窗口更新,仅在断点处更新我的监视变量。

有人尝试过使用 MODBUS RTU 进行运行时数据记录吗?

Are there any soft debuggers for microcontrollers (say PIC24) something like GDB. My platform doesn't run Linux so can’t use GDB. More than a debugger I need to log data, something like what CCP does.

I have a PICKit2 but it does not support runtime watch window update, only on breakpoints my watch variables be updated.

Has anyone tried using MODBUS RTU for runtime data logging ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

回首观望 2024-11-15 01:15:08

通过串行总线传输数据并将其记录在计算机端。许多微控制器都配备了 UART,因此只需将串行输入定向到文件即可记录 RS-232 消息(您可能需要 USB 转串行转换器,例如基于它们的 FTDI 设备/引线/电缆组件)。或者使用 CAN 总线或任何可用于连接计算机的其他串行协议,并且可能会编写自己的记录器。

Transmit your data over a serial bus and log it at the computer end. Many micros come with a UART so RS-232 messages could be logged by simply directing the serial input to a file (you might need a USB to serial converter, such as the FTDI devices/leads/cable assemblies based on them). Or use CAN bus or any other serial protocol that you can get an interface to your computer with, and possibly write your own logger.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文