Pcc

SCPI Commands :

CONFigure:LTE:SIGNaling<instance>:UL[:PCC]:PMAX
CONFigure:LTE:SIGNaling<instance>:UL[:PCC]:JUPower
class PccCls[source]

Pcc commands group definition. 17 total commands, 3 Subgroups, 2 group commands

get_ju_power() bool[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:UL[:PCC]:JUPower
value: bool = driver.configure.uplink.pcc.get_ju_power()

Enables or disables joint uplink power control for uplink carrier aggregation.

return:

enable: OFF | ON

get_pmax() float[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:UL[:PCC]:PMAX
value: float or bool = driver.configure.uplink.pcc.get_pmax()

Specifies the maximum allowed UE power.

return:

power: (float or boolean) numeric | ON | OFF Range: -30 dBm to 33 dBm, Unit: dBm ON | OFF enables or disables signaling of the value to the UE.

set_ju_power(enable: bool) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:UL[:PCC]:JUPower
driver.configure.uplink.pcc.set_ju_power(enable = False)

Enables or disables joint uplink power control for uplink carrier aggregation.

param enable:

OFF | ON

set_pmax(power: float) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:UL[:PCC]:PMAX
driver.configure.uplink.pcc.set_pmax(power = 1.0)

Specifies the maximum allowed UE power.

param power:

(float or boolean) numeric | ON | OFF Range: -30 dBm to 33 dBm, Unit: dBm ON | OFF enables or disables signaling of the value to the UE.

Cloning the Group

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

Subgroups