State<Status>

RepCap Settings

# Range: Nr1 .. Nr32
rc = driver.applications.k17Mcgd.sense.average.state.repcap_status_get()
driver.applications.k17Mcgd.sense.average.state.repcap_status_set(repcap.Status.Nr1)

SCPI Command :

[SENSe]:AVERage:STATe<t>
class StateCls[source]

State commands group definition. 1 total commands, 0 Subgroups, 1 group commands Repeated Capability: Status, default value after init: Status.Nr1

get(status=Status.Default) bool[source]
# SCPI: [SENSe]:AVERage:STATe<t>
value: bool = driver.applications.k17Mcgd.sense.average.state.get(status = repcap.Status.Default)

This command turns averaging of the I/Q data on and off. Before you can use the command you have to turn the I/Q data acquisition on with method RsFsw.Applications.IqAnalyzer.Trace.Iq.State.set. If averaging is on, the maximum amount of I/Q data that can be recorded is 512kS (524288 samples) .

param status

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

return

average_mode: No help available

set(average_mode: bool, status=Status.Default) None[source]
# SCPI: [SENSe]:AVERage:STATe<t>
driver.applications.k17Mcgd.sense.average.state.set(average_mode = False, status = repcap.Status.Default)

This command turns averaging of the I/Q data on and off. Before you can use the command you have to turn the I/Q data acquisition on with method RsFsw.Applications.IqAnalyzer.Trace.Iq.State.set. If averaging is on, the maximum amount of I/Q data that can be recorded is 512kS (524288 samples) .

param average_mode

ON | OFF | 0 | 1 OFF | 0 Switches the function off ON | 1 Switches the function on

param status

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

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.applications.k17Mcgd.sense.average.state.clone()