Layer

SCPI Commands

CONFigure:CDMA:SIGNaling<Instance>:LAYer:RCONfig
CONFigure:CDMA:SIGNaling<Instance>:LAYer:MODulation
class Layer[source]

Layer commands group definition. 23 total commands, 6 Sub-groups, 2 group commands

get_modulation()RsCmwCdma2kSig.enums.Modulation[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:LAYer:MODulation
value: enums.Modulation = driver.configure.layer.get_modulation()

Queries the preconfigured modulation scheme or in the connected status used for the active connection. It depends on the radio configuration. See also: ‘Radio Configurations’

return

modulation: QPSK | HPSK

get_rconfig()RsCmwCdma2kSig.enums.RadioConfig[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:LAYer:RCONfig
value: enums.RadioConfig = driver.configure.layer.get_rconfig()

Queries the current radio configuration (RC) used during the connection to the mobile station. Setting this value has no effect because the radio configuration parameter is a result of the session negotiation.

return

radio_config: F1R1 | F2R2 | F3R3 | F4R3 | F5R4 The allowed values for the forward and reverse fundamental channel depends on the ‘1st Service Option’.

set_rconfig(radio_config: RsCmwCdma2kSig.enums.RadioConfig)None[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:LAYer:RCONfig
driver.configure.layer.set_rconfig(radio_config = enums.RadioConfig.F1R1)

Queries the current radio configuration (RC) used during the connection to the mobile station. Setting this value has no effect because the radio configuration parameter is a result of the session negotiation.

param radio_config

F1R1 | F2R2 | F3R3 | F4R3 | F5R4 The allowed values for the forward and reverse fundamental channel depends on the ‘1st Service Option’.

Cloning the Group

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

Subgroups