Python监控串口(RS-232)握手信号
我需要监控串口信号(RI、DSR、CD、CTS)的状态。 使用“串行”库进行循环和轮询(例如使用函数 getRI)的 CPU 强度太大,并且响应时间不可接受。
有没有用python的解决方案?
I need to monitor the status of serial port signals (RI, DSR, CD,CTS).
Looping and polling with 'serial' library, (eg. using functions getRI) is too cpu intensive and response time is not acceptable.
Is there a solutions with python?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Linux 上,可以通过阻塞系统调用 TIOCMIWAIT 使用基于中断的通知来监视 RS-232 端口信号引脚的状态变化:
On Linux is possible to monitor che state change of a signal pin of an RS-232 port using interrupt based notification throught the blocking syscall TIOCMIWAIT: