Jonathan Böcker
Jonathan Böcker
When skimming through old issues, I saw the trick with `LIBSERIALPORT_DEBUG=1`, and this is the output: ``` sp: sp_get_port_by_name(/dev/ttyS4, 0x7f48e80c4990) called. sp: Building structure for port /dev/ttyS4. sp: get_port_details returning...
@mateen-demah I did port the [Golang serial library](https://github.com/bugst/go-serial/blob/v1.5.0/serial_unix.go#L292) function for getting a more valid list of ports, but abandoned that code in favour of just filtering on vendor/product ID. I...
My use case was to present the user with a list of available ports to choose from, and that is possible without instantiating a `SerialPort` object, by enumerating the files...
Also, you can read the [vid/pid from the file system](https://github.com/bugst/go-serial/blob/v1.5.0/enumerator/usb_linux.go#L36)
I just released version 0.4.0 that might fix the problem. I'll close the issue for now, but if the problem persists I can reopen.
I just released version 0.4.0 that might fix the problem. I'll close the issue for now, but if the problem persists I can reopen.
I just released version 0.4.0 that might fix the problem. I'll close the issue for now, but if the problem persists I can reopen.
I see the point of avoiding breaking changes. Would it be possible to mark/decorate Apis as experimental? DefinitelyTyped seems to go another route: https://github.com/DefinitelyTyped/DefinitelyTyped/blob/master/types%2Fwebappsec-credential-management%2Findex.d.ts#L182
Hi, do you have a small example on how to reproduce the exception?
Hi, do you have a minimal example for reproducing the bug?