-
-
Notifications
You must be signed in to change notification settings - Fork 5
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
Added "rts" and "dtr" configuration parameters. #21
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
UPDATE: fixed!
The port is always configured as dtr=on,rts=off
after the change made in 37305bb
For example, any of the following commands:
$ arduino-cli monitor -p COM43 --config dtr=off,rts=off
$ arduino-cli monitor -p COM43 --config dtr=on,rts=on
$ arduino-cli monitor -p COM43 --config dtr=off,rts=on
Produce these states:
I only checked on Windows. Everything works as expected for me with the version from 4d98996
9e5739b
to
8e68f5e
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Everything is working as expected on Windows and Linux with the build from 16a3ef6
This PR adds the
rts
andcts
configuration parameter that allows to set and reset RTS and CTS lines.