UserDefined

SCPI Commands :

CONFigure:LTE:SIGNaling<instance>:RFSettings[:PCC]:UDEFined:UDSeparation
CONFigure:LTE:SIGNaling<instance>:RFSettings[:PCC]:UDEFined:BINDicator
class UserDefinedCls[source]

UserDefined commands group definition. 10 total commands, 2 Subgroups, 2 group commands

get_bindicator() int[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:RFSettings[:PCC]:UDEFined:BINDicator
value: int = driver.configure.rfSettings.pcc.userDefined.get_bindicator()

Configures the frequency band indicator, identifying the user-defined band in signaling messages.

return:

band_indicator: numeric Range: 1 to 256

get_ud_separation() int[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:RFSettings[:PCC]:UDEFined:UDSeparation
value: int = driver.configure.rfSettings.pcc.userDefined.get_ud_separation()

Configures the UL/DL separation FDL - FUL for the user-defined band. The allowed range depends on the remaining user-defined band settings: The resulting uplink carrier center frequencies must be within the allowed frequency range. For calculations, see method RsCmwLteSig.Configure.RfSettings.Pcc.UserDefined.Frequency.Downlink.minimum.

return:

frequency: numeric Depending on the other settings, only a part of the following range is allowed. Range: -5930 MHz to 5930 MHz , Unit: Hz

set_bindicator(band_indicator: int) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:RFSettings[:PCC]:UDEFined:BINDicator
driver.configure.rfSettings.pcc.userDefined.set_bindicator(band_indicator = 1)

Configures the frequency band indicator, identifying the user-defined band in signaling messages.

param band_indicator:

numeric Range: 1 to 256

set_ud_separation(frequency: int) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:RFSettings[:PCC]:UDEFined:UDSeparation
driver.configure.rfSettings.pcc.userDefined.set_ud_separation(frequency = 1)

Configures the UL/DL separation FDL - FUL for the user-defined band. The allowed range depends on the remaining user-defined band settings: The resulting uplink carrier center frequencies must be within the allowed frequency range. For calculations, see method RsCmwLteSig.Configure.RfSettings.Pcc.UserDefined.Frequency.Downlink.minimum.

param frequency:

numeric Depending on the other settings, only a part of the following range is allowed. Range: -5930 MHz to 5930 MHz , Unit: Hz

Cloning the Group

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

Subgroups