SCPI.SYSTem.SET

Object Type

Method (Write Only)

Syntax

SCPI.SYSTem.SET = Value

Description

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 (:SCPI.TRIGger.SEQuence.SOURce) 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).

Variable

Parameter

Value

Description

This command recalls the state of the instrument when the *LRN? query is executed.

Data Type

Binary (byte)

 

Related objects

SCPI.IEEE4882.LRN

Equivalent Key

No equivalent key is available on the front panel.

Equivalent SCPI Command

Syntax

:SYSTem:SET

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 E5061B

    Open "C:\State01.sta" For Binary As #1

        NoofByte = LOF(1)

        ReDim SETData(NoofByte)

        Get #1, , SETData()

    Close

           

    '*** Send the State file data to E5061B

    Age506x.WriteIEEEBlock ":SYST:SET ", SETData, True