Output<Output>

RepCap Settings

# Range: Nr1 .. Nr2
rc = driver.configure.rfSettings.eattenuation.output.repcap_output_get()
driver.configure.rfSettings.eattenuation.output.repcap_output_set(repcap.Output.Nr1)

SCPI Commands

CONFigure:GSM:SIGNaling<Instance>:RFSettings:EATTenuation:OUTPut<Output>
class Output[source]

Output commands group definition. 1 total commands, 0 Sub-groups, 1 group commands Repeated Capability: Output, default value after init: Output.Nr1

get(output=<Output.Default: -1>)float[source]
# SCPI: CONFigure:GSM:SIGNaling<Instance>:RFSettings:EATTenuation:OUTPut<n>
value: float = driver.configure.rfSettings.eattenuation.output.get(output = repcap.Output.Default)

Defines an external attenuation (or gain, if the value is negative) , to be applied to the RF output connector. Depending on the scenario, several RF output paths are used and the attenuation can be configured per output path. The allowed value range can be calculated as follows: Range = [-130 - ‘DL Reference Level’ to -‘DL Reference Level’]

param output

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

return

ext_rf_out_att: Range: see above , Unit: dB

set(ext_rf_out_att: float, output=<Output.Default: -1>)None[source]
# SCPI: CONFigure:GSM:SIGNaling<Instance>:RFSettings:EATTenuation:OUTPut<n>
driver.configure.rfSettings.eattenuation.output.set(ext_rf_out_att = 1.0, output = repcap.Output.Default)

Defines an external attenuation (or gain, if the value is negative) , to be applied to the RF output connector. Depending on the scenario, several RF output paths are used and the attenuation can be configured per output path. The allowed value range can be calculated as follows: Range = [-130 - ‘DL Reference Level’ to -‘DL Reference Level’]

param ext_rf_out_att

Range: see above , Unit: dB

param output

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

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.configure.rfSettings.eattenuation.output.clone()