How to communicate with instrument using USB port

53 Ansichten (letzte 30 Tage)
BSantos
BSantos am 23 Jul. 2014
Kommentiert: Larry am 30 Sep. 2020
Hello all!
Is there anyone who knows how to establish communication between Matlab and Intrument using USB port? I have the drivers of the instrument installed, but still not able to communicate with it.
Anyone who can help? I have never done this before...
Thank you!
  2 Kommentare
Michael Haderlein
Michael Haderlein am 23 Jul. 2014
Did you check the Instrument Control Toolbox? I've personally never worked with it, but it looks as if you'd need to create a VISA-USB object. Then you can read and write messages as shown in the toolbox help. Everything else will strongly depend on your instrument.
BSantos
BSantos am 23 Jul. 2014
Dear Michael,
I did check it, but no budget to buy it. So, I was asked to do it, without. That Toolbox looked very handy but for now it's not an option...

Melden Sie sich an, um zu kommentieren.

Antworten (3)

Jasmine
Jasmine am 23 Jul. 2014
First you'll need to open of the port. See fopen(serial) for help with this. You should be able to work out which COM port your instrument is on using device manager (assuming you are working on a windows platform). If for example you found it was on COM3 try fopen(COM3) . You could then use COM3.status to see if the port had opened, or try typing instrfind at the command line. Then how you communicate with it will depend on your instrument and what commands it understands. You may need to use fprintf(serial) to write text to a device or fwrite(serial) to write binary data to a device. See http://www.mathworks.co.uk/help/matlab/ref/serial.fwrite.html it has links to most functions for use with serial devices.
  3 Kommentare
Joseph Cheng
Joseph Cheng am 23 Jul. 2014
What instrument are you trying to talk to?
BSantos
BSantos am 23 Jul. 2014
Bearbeitet: BSantos am 23 Jul. 2014
A Pulse Generator: Quantum Composer 9520 Series.

Melden Sie sich an, um zu kommentieren.


Jasmine
Jasmine am 23 Jul. 2014
Sounds like it is a terminator property problem. Try:
set(s,'Terminator',<cr><lf>);
and change your code to:
s = serial('COM3');
fopen(s);
set(s,'BaudRate',9600);
fprintf(s,'*IDN?');
out = fscanf(s);
  2 Kommentare
BSantos
BSantos am 25 Jul. 2014
Unfortunately, I can't change the code to your suggestion or what's on the example because that's not the syntax that my instrument uses. I have tried your suggestion About the terminator property but still no success.
Always get the same Warning message!
Anyone out there who might have worked with Quantum Composer 9520 Pulse Generator?
Thanks!
Larry
Larry am 30 Sep. 2020
I suspect the documentation w/ <cr> and <lf> uses those character strings as placeholders for the ASCII characters. In Matlab use \r and \n. I.e. substitute '*IDN?\r\n' for '*IDN?<cr><lf>'.

Melden Sie sich an, um zu kommentieren.


ozgur yildiz
ozgur yildiz am 23 Okt. 2018
It is not a classic serial connection. Probably the device you want to connect, is identified by your computer since you've already installed the drivers (SDK) of the device. So you cannot see any occupied comport in Device Manager instead you can see the Device ID on one of the USB hub. So First you should indentify 'xxx.dll' files of the device in Matlab environment.

Kategorien

Mehr zu Instrument Control Toolbox finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by