go-serial icon indicating copy to clipboard operation
go-serial copied to clipboard

A Go library for dealing with serial ports.

Results 25 go-serial issues
Sort by recently updated
recently updated
newest added

This allows using Silicon Labs' CP210x runtime library while having the serial port open and in use. That can be used for e.g. controlling the GPIO on Windows.

different NCCS value for conditional compilation.

Test on windows 10, serial.Open: The parameter is incorrect. options := serial.OpenOptions{ PortName: "COM1", BaudRate: 9600, DataBits: 8, StopBits: 1, MinimumReadSize: 4, } thx

Trying to get this working in Windows Subsystem for Linux. "SYS_IOCTL: inappropriate ioctl for device" when trying to open the port.

Hi all, I'm using this library on Linux to configure and maintain connectivity of a USB LTE modem. One of the steps results in the modem "disappearing" as it restarts....

Could you please release v1.0.0 (or any other version of your pleasing)? Otherwise I will have to reference `v0.0.0-20180131005756-15cf729a72d4` in go.mod which looks ugly

It seems when I open a port and execute a read there can be old data in the buffer. I have to disconnect/reconnect the USB-UART to clear the old data....

I'm having trouble using the library on Windows. It's working great on macos. I'm using read timeouts to allow me to detect when there are bytes to be read (part...

Currently `Read()` blocks until `buf` is full - or I don't understand the function correctly (honestly, let's hope so). I'm looking for a way to `Read()` to `buf` for say...

I was expecting Read to be interrupted by Close, but this doesn't work. The issue is that in blocking mode, the read is not interrupted even if the file is...