USRP2 中监控串口的工具
我正在研究 USRP2,想阅读调试消息。后端有一个串口。
我连接一个标准 USB 到 3.3v 电平串行转换器。但我不确定使用哪个工具来阅读消息。
根据规范,我可以以 230400 波特率读取调试详细消息。
我们可以在Windows中使用超级终端吗?任何第三方工具或 Linux 中的任何工具也会有帮助。
谢谢
I am working on USRP2 and would like to read the debug messages. There is a serial port at the rear-end.
I connect a standard USB to 3.3v-level serial converter. But I am not sure, which tool to use to read the messages.
As per the specification, I could read the debug verbose message at 230400 baud.
Can we use Hyperterminal in Windows ? Any 3rd party tools or any tools in Linux would be helpful as well.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在 Linux 中使用
minicom
,在 Windows 中使用 Teraterm Pro。(在 Linux 的紧要关头,如果您不需要将任何内容发送回嵌入式系统,并且可以正确配置默认波特率,则可以执行类似
cat /dev/ttyUSB0
的操作... )I use
minicom
in Linux, Teraterm Pro in Windows.(In a pinch in Linux you can do something like
cat /dev/ttyUSB0
if you don't need to send anything back to your embedded system, and the default baud rate can be configured correctly...)