Fix ResetInputBuffer and ResetOutputBuffer on Darwin
This commit is contained in:
19
serial_resetbuf_linux_bsd.go
Normal file
19
serial_resetbuf_linux_bsd.go
Normal file
@@ -0,0 +1,19 @@
|
||||
//
|
||||
// Copyright 2014-2021 Cristian Maglie. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style
|
||||
// license that can be found in the LICENSE file.
|
||||
//
|
||||
|
||||
// +build linux freebsd openbsd
|
||||
|
||||
package serial
|
||||
|
||||
import "golang.org/x/sys/unix"
|
||||
|
||||
func (port *unixPort) ResetInputBuffer() error {
|
||||
return unix.IoctlSetInt(port.handle, ioctlTcflsh, unix.TCIFLUSH)
|
||||
}
|
||||
|
||||
func (port *unixPort) ResetOutputBuffer() error {
|
||||
return unix.IoctlSetInt(port.handle, ioctlTcflsh, unix.TCOFLUSH)
|
||||
}
|
||||
Reference in New Issue
Block a user