Skip to content
New issue

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

In socat pts port, got 'Serial port busy' error when program restart after killed #199

Open
4 tasks done
dabeibao opened this issue Mar 12, 2025 · 0 comments
Open
4 tasks done
Labels

Comments

@dabeibao
Copy link

dabeibao commented Mar 12, 2025

Describe the problem

Failed to reopen the port with error 'Serial port busy'

To reproduce

Reproduce steps:

  1. Create pts paris with socat
socat -d -d PTY,link=/tmp/ttyV0,raw,echo=0 PTY,link=/tmp/ttyV1,raw,echo=0
  1. Start the program to open the port, then kill it

  2. 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
}

Please double-check that you have reported each of the following

before submitting the issue.

  • I've provided the FULL source code that causes the problem
  • I've provided all the actions required to reproduce the problem

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

  • I searched for previous requests in the issue tracker
  • My request contains all necessary details
@dabeibao dabeibao added the bug label Mar 12, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant