Agilent Technologies 8714ET Switch User Manual


 
LAN Interface Supplement 6-41
Controlling the Analyzer via the LAN
Controlling the Analyzer with a Java™ Applet
return null;
}
// Read a byte from SCPI socket
public byte ScpiReadByte()
{
try {
if ( SockOpen(SCPI) ) {
return sockIn[SCPI].readByte();
}
}
catch (IOException e) {
System.out.println("Scpi Read Byte Error "+e.getMessage());
}
return 0;
}
}