Read terminal status line: Data Set Ready
(self)
| 219 | return self._port_handle.CtsHolding |
| 220 | |
| 221 | def getDSR(self): |
| 222 | """Read terminal status line: Data Set Ready""" |
| 223 | if not self._port_handle: raise portNotOpenError |
| 224 | return self._port_handle.DsrHolding |
| 225 | |
| 226 | def getRI(self): |
| 227 | """Read terminal status line: Ring Indicator""" |
nothing calls this directly
no outgoing calls
no test coverage detected