使用 shell 脚本写入串行端口
我需要通过发送 ascii 字符来与串行设备进行通信。 我知道在 Linux 中您可以使用 fopen() 写入串行端口,但我不知道您是否可以从 shell 执行此操作。 如果没有,还有其他简单的方法吗?
I need to communicate with a serial device by sending it ascii characters. I know that in Linux you can use fopen() to write to a serial port, but I didn't know if you could do that from a shell. If not, is there another simple way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信您可以简单地从 shell 将/cat 数据重定向到串行端口。 您首先需要使用setserial(8) 来配置波特率和其他信息。
I believe you can simply redirect/cat data to the serial port from the shell. You'll want to use setserial(8) to configure baud and other information first.