:SYSTem:SET <data>
This command recalls the state of the instrument when the *LRN? query was executed.
The result of *LRN? query contains ":SYST:SET " prefix, so that simply sending the *LRN? result to the instrument executes this command.
Dim SETData() As Byte, NoofByte As Double
'*** Recall the State data from the file, State01.sta is a state file saved by E4982A
Open "C:\State01.sta" For Binary As #1
NoofByte = LOF(1)
ReDim SETData(NoofByte)
Get #1, , SETData()
Close
'*** Send the State file data to E4982A
Age4982x.WriteIEEEBlock ":SYST:SET ", SETData, True
Parameter |
<data> |
Description |
Data read out from the file |
Data type |
Block |
{block}<newline><^END>
No equivalent keys are available on the front panel.