I need to monitor the status of serial port signals (RI, DSR, CD,CTS). Looping and polling with 'serial' library, (eg. using funtions getRI) is too cpu intensive and response time is not acceptable.
Is there a solutions with python?
|
I need to monitor the status of serial port signals (RI, DSR, CD,CTS). Looping and polling with 'serial' library, (eg. using funtions getRI) is too cpu intensive and response time is not acceptable. Is there a solutions with python? |
||||
|
|
|
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:
|
|||
|
|