can we create multiple device objects in instrument control toolbox?

3 views (last 30 days)
1.can we create multiple device objects in instrument control toolbox and make them communicate parallely without disturbing each other.?
2.if we created and connected an object and did some operations like reading a property and disconnected using disconnect(obj) command. if we connect the same object again,does the properties which we read before will be available?

Accepted Answer

Rob Graessle
Rob Graessle on 5 Dec 2012
Yes, you can create multiple device objects at once using Instrument Control Toolbox.
I'm a little confused by your second question, but if you're talking about something like this:
propertyValue = get(obj, 'PropertyName');
disconnect(obj);
connect(obj);
The propertyValue variable will be unchanged after reconnecting to the instrument.
If you're talking about using a set command to change the state of the instrument, that also should not be affected by reconnecting to the instrument.
  2 Comments
Walter Roberson
Walter Roberson on 5 Dec 2012
With regards to "make them communicate parallely without disturbing each other": some parts of the device interrupts need to be serviced by the single-threaded part of MATLAB, and if the devices are needing service rapidly enough, there would be contention between them.

Sign in to comment.

More Answers (0)

Categories

Find more on Instrument Connection and Communication in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!