Output<Output>

RepCap Settings

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

SCPI Command :

CONFigure:LTE:SIGNaling<instance>:RFSettings:SCC<Carrier>: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(secondaryCompCarrier=SecondaryCompCarrier.Default, output=Output.Default) float[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:RFSettings:SCC<Carrier>:EATTenuation:OUTPut<n>
value: float = driver.configure.rfSettings.scc.eattenuation.output.get(secondaryCompCarrier = repcap.SecondaryCompCarrier.Default, 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 secondaryCompCarrier:

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

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, secondaryCompCarrier=SecondaryCompCarrier.Default, output=Output.Default) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:RFSettings:SCC<Carrier>:EATTenuation:OUTPut<n>
driver.configure.rfSettings.scc.eattenuation.output.set(ext_rf_out_att = 1.0, secondaryCompCarrier = repcap.SecondaryCompCarrier.Default, 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 secondaryCompCarrier:

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

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.scc.eattenuation.output.clone()