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

SerialPort.setBreak() consistently takes ~510ms to finish #588

Open
moritzruth opened this issue Jan 27, 2025 · 0 comments
Open

SerialPort.setBreak() consistently takes ~510ms to finish #588

moritzruth opened this issue Jan 27, 2025 · 0 comments

Comments

@moritzruth
Copy link

I'm using jSerialComm to interact with a USB-to-DMX adapter. The following code used to work in v2.10.2 and earlier versions:

while (Thread.currentThread().isAlive) {
	port.setBreak()
	Thread.sleep(0, 88000)
	port.clearBreak()
	Thread.sleep(0, 8000)
	stream.write(0)
	stream.write(data)
	stream.flush()
	Thread.sleep(23)
}

Starting with v2.10.3, the port.setBreak() call always takes between 509 and 512 milliseconds to complete, compared to less than one millisecond in the versions before. (Measured using measureTimeMillis from Kotlin's standard library.)

While the DMX protocol generally does not require very precise timing, ~500ms is definitely too long.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant