Dear all<br>
I'm develop external software to communicate with Keithley 4200A SCS through Ethernet and using <strong>NationalInstruments</strong>.<strong>Visa </strong>library<br>
After send command for measurement, I send "SP" command to checking measurement completed or not but error time out as image attached<br>
Could you help me check this issue?<br>
<br>
Below is my config Visa and command sending:<br>
<strong>Config Visa</strong>
<blockquote>
<p>mbSession = (MessageBasedSession)rmSession.Open(_resourcestring[0]);<br>
mbSession.TimeoutMilliseconds = 2000;<br>
mbSession.TerminationCharacterEnabled = true;<br>
mbSession.SendEndEnabled = false;<br>
mbSession.TerminationCharacter = 0xA;</p>
</blockquote>
<p><strong>Command send </strong></p>
<blockquote>
<p>BC.<br>
DE.<br>
CH1,'V1','I1',1,1.<br>
CH2,'V2','I2',3,3.<br>
SS.<br>
VR1,0,5,1,0.1.<br>
VR1,0,5,1,0.1.<br>
DT 0.<br>
HT 0.<br>
IT2.<br>
RS 5.<br>
RS 5.<br>
RP PMU1-1,2.<br>
RP PMU1-2,2.<br>
SM.<br>
DM1.<br>
XN 'V1',1,-1,1.<br>
YA 'I1',1,-10E-12,-10E-3.<br>
ME1.<br>
SP</p>
</blockquote>
<p><strong>Command send and read</strong></p>
<blockquote>
<p>string command = string.Format("{0}{1}", cmd, "\0");<br>
mbSession.FormattedIO.WriteLine(command);<br>
result = mbSession.FormattedIO.ReadLine();</p>
</blockquote>
<p></p>