Command
:SYSTem:SET <Value>
This command recalls the state of the instrument when the *LRN? query is executed. The contents to be recalled depends on the contents of the block data.
If the block data contains trace state, the trigger source (:TRIG:SOUR) becomes "MANual". The result of *LRN? query contains ":SYSTem:SET " prefix. Hence, the *LRN? simply executes this command.
This command requires instrument settings by binary block data (same as Save/Recall state file contents).
Parameter |
Value |
Description |
Command Setup |
Data Type |
Binary Type |
Dim SETData() As Byte, NoofByte As Double
'*** Recall the State data from the file, State01.sta is a state file saved by E4990A
Open "C:\State01.sta" For Binary As #1
NoofByte = LOF(1)
ReDim SETData(NoofByte)
Get #1, , SETData()
Close
'*** Send the State file data to E4990A
Ana.WriteIEEEBlock ":SYST:SET ", SETData, True
No equivalent key is available on the front panel.
SCPI.SYSTEM.SET