Added support for sending breaks

This commit is contained in:
Jaime
2022-05-04 12:03:56 +02:00
committed by Cristian Maglie
parent f85edb454b
commit 75542ba31a
7 changed files with 30 additions and 0 deletions

View File

@@ -48,6 +48,9 @@ type Port interface {
// Close the serial port
Close() error
// Break sends a break for a determined time
Break(time.Duration) error
}
// NoTimeout should be used as a parameter to SetReadTimeout to disable timeout.