Can't Set 'SingleEnded' TerminalConfig with NI USB-6366 DAQ
조회 수: 7 (최근 30일)
이전 댓글 표시
I am trying to set the terminal configuration for the NI USB-6366 to 'SingleEnded'. I get the error
this device does not support setting TerminalConfig to SingleEnded
although it does list it as a valid option when you look at the acceptable input options.
I am currently using Win7 64 with R2012a with the latest toolboxes and drivers.
Is this a bug or am I missing something?
thanks
-scott
댓글 수: 0
답변 (1개)
Manisha
2012년 2월 21일
If you look at Specification tab of USB 6363 datasheet, you would see that it says 0 single ended channels. So this device does not support single ended channels.
The TerminalConfigsAvailable property should list the available terminal configs for that device. You can get to this property as follows
d = daq.getDevices()
% Get terminal configs for the first device and the first subsystem
d(1).Subsystems(1).TerminalConfigsAvailable
Hope that helps,
Manisha
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Digital Input and Output에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!