:SYST:SET

Syntax

:SYSTem:SET <data>

Description

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.

Example of use (VISA-COM)

 

    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

Variable

Parameter

<data>

Description

Data read out from the file

Data type

Block

Query Response

{block}<newline><^END>

Equivalent key

No equivalent keys are available on the front panel.