We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Failed to reopen the port with error 'Serial port busy'
Reproduce steps:
socat -d -d PTY,link=/tmp/ttyV0,raw,echo=0 PTY,link=/tmp/ttyV1,raw,echo=0
Start the program to open the port, then kill it
Restart the program, got this error:
WRN Open failed error="Serial port busy" Port=/tmp/ttyV0
The code to open the port:
type SerOption struct { PortName string BaudRate uint } type SerFile struct { file serial.Port } func OpenSerFile(option *SerOption) (*SerFile, error) { mode := serial.Mode{ BaudRate: int(option.BaudRate), DataBits: 8, Parity: serial.NoParity, StopBits: serial.OneStopBit, } file, err := serial.Open(option.PortName, &mode) if err != nil { return nil, err } file.SetDTR(false) file.SetRTS(false) return &SerFile{file}, nil }
before submitting the issue.
Open the port successfully after restart
Linux
socat pts pair
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the problem
Failed to reopen the port with error 'Serial port busy'
To reproduce
Reproduce steps:
Start the program to open the port, then kill it
Restart the program, got this error:
The code to open the port:
Please double-check that you have reported each of the following
before submitting the issue.
Expected behavior
Open the port successfully after restart
Operating system and version
Linux
Please describe your hardware setup
socat pts pair
Additional context
No response
Issue checklist
The text was updated successfully, but these errors were encountered: