Read terminal status line: Carrier Detect
(self)
| 220 | self.sPort.isRI() |
| 221 | |
| 222 | def getCD(self): |
| 223 | """Read terminal status line: Carrier Detect""" |
| 224 | if not self.sPort: raise portNotOpenError |
| 225 | self.sPort.isCD() |
| 226 | |
| 227 | |
| 228 | # assemble Serial class with the platform specific implementation and the base |
nothing calls this directly
no outgoing calls
no test coverage detected