-
Notifications
You must be signed in to change notification settings - Fork 20
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
Awkward passing of serial device on linux #3
Comments
Unfortunately I don't have a Linux machine to test this with. |
Hey @bavovanachte , I wanted to see if you were able to test the new package. If so, please let me know the results. If I don't hear from you in a few days I will close this issue. |
Apologies for the delay. I've switched to just using PyVisa for now, but plan to try your library again at some point. I'll reopen or open another issue if it doesn't work |
This should be resolved in version 0.1.1. |
Hi!
Thanks for this initiative. I'm trying to use this library to communicate with a SCPI-enabled device over a serial link, running in linux.
The serial device that it's connected to is
/dev/ttyACM0
and the underlying port that should be passed on to pyvisa should beASRL/dev/ttyACM0::INSTR
.To make this work, I need to initialize the instrument using
inst = scpi.Instrument("COM/dev/ttyACM0")
, which is a bit awkward under linux as the "COM" terminology isn't used there.The text was updated successfully, but these errors were encountered: