Send a LUA script via USB to a Test Script Processor enabled device using Matlab
조회 수: 4 (최근 30일)
이전 댓글 표시
I am working with a Keithley 3706-S switcher which can be configures using a LUA code sent via Test Script Builder (TSB). LUA code for my application is simply one single line:
channel.exclusiveclose('1003')
Now the above instrument is interfaced over the USB port. I would like to know how could I do the same using Matlab
댓글 수: 0
채택된 답변
Walter Roberson
2011년 9월 12일
Wait, I thought the interface to that device was via TCP ??
Well if it is USB, then use serial() to allocate the virtual USB serial port to an object, use set() to configure the speed and so on, fopen() the serial object, and fwrite() or fprintf() the string to the serial object.
Be sure to find out exactly what line terminator is required and watch out because fprintf() automatically adds the LineTerminator configured for the serial object if you use the call fprintf(object,string) instead of using fprintf(object,format,string)
댓글 수: 0
추가 답변 (1개)
Dhrumil
2013년 10월 30일
Hello,
I am trying to do the same thing but using TCP/IP and Matlab. How would I send the LUA commands through Matlab over TCP/IP?
Thanks.
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Test Scripts에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!