(minread int, timeout float64)
| 399 | } |
| 400 | |
| 401 | func (sp *serialPort) SetReadParams(minread int, timeout float64) error { |
| 402 | // TODO: minread is ignored! |
| 403 | return setCommTimeouts(sp.fd, timeout) |
| 404 | //return StringError("SetReadParams not implemented yet on Windows") |
| 405 | } |
| 406 | |
| 407 | type winSersTimeout struct{} |
| 408 |
nothing calls this directly
no test coverage detected