Output<Output>

RepCap Settings

# Range: Out1 .. Out4
rc = driver.configure.rfSettings.pcc.eattenuation.output.repcap_output_get()
driver.configure.rfSettings.pcc.eattenuation.output.repcap_output_set(repcap.Output.Out1)

SCPI Command :

CONFigure:LTE:SIGNaling<instance>:RFSettings[:PCC]:EATTenuation:OUTPut<n>
class OutputCls[source]

Output commands group definition. 1 total commands, 0 Subgroups, 1 group commands Repeated Capability: Output, default value after init: Output.Out1

get(output=Output.Default) float[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:RFSettings[:PCC]:EATTenuation:OUTPut<n>
value: float = driver.configure.rfSettings.pcc.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 path number <n>. Depending on the transmission scheme, several output paths are used for each carrier and the attenuation can be configured per output path.

param output:

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

return:

ext_rf_out_att: numeric Range: -50 dB to 90 dB, Unit: dB

set(ext_rf_out_att: float, output=Output.Default) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:RFSettings[:PCC]:EATTenuation:OUTPut<n>
driver.configure.rfSettings.pcc.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 path number <n>. Depending on the transmission scheme, several output paths are used for each carrier and the attenuation can be configured per output path.

param ext_rf_out_att:

numeric Range: -50 dB to 90 dB, Unit: dB

param output:

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

Cloning the Group

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