Level

SCPI Command:

FETCh:AFRF:MEASurement<Instance>:SROutines:TSENsitivity:AOUT:LEVel
CALCulate:AFRF:MEASurement<Instance>:SROutines:TSENsitivity:AOUT:LEVel
READ:AFRF:MEASurement<Instance>:SROutines:TSENsitivity:AOUT:LEVel
class LevelCls[source]

Level commands group definition. 5 total commands, 1 Subgroups, 3 group commands

calculate() ResultStatus[source]
# SCPI: CALCulate:AFRF:MEASurement<Instance>:SROutines:TSENsitivity:AOUT:LEVel
value: enums.ResultStatus = driver.afRf.measurement.searchRoutines.tsensitivity.audioOutput.level.calculate()

Query the AF signal level result at the target deviation for the AF path for the TX modulation sensitivity search routine. CALCulate commands return error indicators instead of measurement values.

Use RsCma.reliability.last_value to read the updated reliability indicator.

return:

tx_mod_sens: Level of the AF signal for the AF path Unit: V

fetch() float[source]
# SCPI: FETCh:AFRF:MEASurement<Instance>:SROutines:TSENsitivity:AOUT:LEVel
value: float = driver.afRf.measurement.searchRoutines.tsensitivity.audioOutput.level.fetch()

Query the AF signal level result at the target deviation for the AF path for the TX modulation sensitivity search routine. CALCulate commands return error indicators instead of measurement values.

Use RsCma.reliability.last_value to read the updated reliability indicator.

return:

tx_mod_sens: Level of the AF signal for the AF path Unit: V

read() float[source]
# SCPI: READ:AFRF:MEASurement<Instance>:SROutines:TSENsitivity:AOUT:LEVel
value: float = driver.afRf.measurement.searchRoutines.tsensitivity.audioOutput.level.read()

Query the AF signal level result at the target deviation for the AF path for the TX modulation sensitivity search routine. CALCulate commands return error indicators instead of measurement values.

Use RsCma.reliability.last_value to read the updated reliability indicator.

return:

tx_mod_sens: Level of the AF signal for the AF path Unit: V

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.afRf.measurement.searchRoutines.tsensitivity.audioOutput.level.clone()

Subgroups