*RST (Reset)

Flex Apps:
FlexDCA
FlexRT
FlexPLL

Command Syntax

*RST

Description

Places FlexPLL in a known start-up state. This is the same actions as using the :SYSTem:DEFault command or clicking FlexPLL's Setup > Default Setup menu command. The following table lists the reset conditions. Use the *OPC? query to notify the calling program when an operation is complete.

FlexPLL Default Settings
Feature Setting
Acquisition
Run/Stop Run
Start Frequency 1.5 kHz
Stop Frequency 50 MHz
Points/Decade 15
Averaging Off
Number of Averages 4
Display
UI Color Theme not changed
Dock Message Area not changed
Invert Graph Colors not changed
Source Setup
Remote Source Settings not changed
Jitter Settings not changed
Receiver Setup
Remote DCA Settings not changed
CDR Settings not changed
JTF Graph Setup
Response On
Response Memories Off
Start Frequency 1.5 kHz
Stop Frequency 50 MHz
Center Frequency 25.00075 MHz
Frequency Span 49.9985 MHz
Y-Axis Stop 10 dB
Y-Axis Start –50 dB

Python Example

import visa # PyVISA library
rm = visa.ResourceManager()
flex=rm.open_resource('TCPIP0::localhost::hislip0,4880::INSTR')
flex.query('*RST;*OPC?')
flex.write(':SYSTem:GTLocal')
flex.close()