필터 지우기
필터 지우기

can we create multiple device objects in instrument control toolbox?

조회 수: 5 (최근 30일)
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?

채택된 답변

Rob Graessle
Rob Graessle 2012년 12월 5일
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
Walter Roberson
Walter Roberson 2012년 12월 5일
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.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Instrument Connection and Communication에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by