Data

SCPI Command :

CALCulate<n>:HOPDetection:STATes[:DATA]
class DataCls[source]

Data commands group definition. 1 total commands, 0 Subgroups, 1 group commands

class DataStruct[source]

Response structure. Fields:

  • Freq_Offset: List[float]: Frequency offsets from the center frequency Unit: HZ

  • Tolerance: List[float]: Tolerance above or below the nominal frequency. Unit: HZ

get(window=Window.Default) DataStruct[source]
# SCPI: CALCulate<n>:HOPDetection:STATes[:DATA]
value: DataStruct = driver.applications.k60Transient.calculate.hopDetection.states.data.get(window = repcap.Window.Default)

Sets and queries the hop state detection table. It consists of a comma-separated list of value pairs, one for each possible hop state. A maximum of 1000 states can be defined. Note that the state table can only be configured manually if method RsFsw.Applications.K60_Transient.Calculate.HopDetection.States.Auto.set is OFF.

param window

optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Calculate’)

return

structure: for return value, see the help for DataStruct structure arguments.

set(freq_offset: Optional[List[float]] = None, tolerance: Optional[List[float]] = None, window=Window.Default) None[source]
# SCPI: CALCulate<n>:HOPDetection:STATes[:DATA]
driver.applications.k60Transient.calculate.hopDetection.states.data.set(freq_offset = [1.1, 2.2, 3.3], tolerance = [1.1, 2.2, 3.3], window = repcap.Window.Default)

Sets and queries the hop state detection table. It consists of a comma-separated list of value pairs, one for each possible hop state. A maximum of 1000 states can be defined. Note that the state table can only be configured manually if method RsFsw.Applications.K60_Transient.Calculate.HopDetection.States.Auto.set is OFF.

param freq_offset

Frequency offsets from the center frequency Unit: HZ

param tolerance

Tolerance above or below the nominal frequency. Unit: HZ

param window

optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Calculate’)