Msettings

SCPI Commands

CONFigure:CDMA:SIGNaling<Instance>:NETWork:MSETtings:MCC
CONFigure:CDMA:SIGNaling<Instance>:NETWork:MSETtings:PLCM
CONFigure:CDMA:SIGNaling<Instance>:NETWork:MSETtings:NMSI
CONFigure:CDMA:SIGNaling<Instance>:NETWork:MSETtings:UMRData
class Msettings[source]

Msettings commands group definition. 5 total commands, 1 Sub-groups, 4 group commands

get_mcc()int[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:NETWork:MSETtings:MCC
value: int = driver.configure.network.msettings.get_mcc()

Specifies the mobile country code (MCC) which is used to set up the connection to the MS. If an MS is registered, this parameter is updated automatically to the MCC of the registered MS. Afterwards when the MS is unregistered the R&S CMW keeps the last information. The parameter can be edit manually or can be updated automatically when an MS with another MCC is registered. The MCC consists of 3 numerical characters (0-9) . It is a part of the IMSI for identifying a mobile subscriber.

return

mob_country_code: Range: 0000 to 9999

get_nmsi()str[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:NETWork:MSETtings:NMSI
value: str = driver.configure.network.msettings.get_nmsi()

Specifies the mobile ID of the MS which is used to set up the connection to the MS. For some protocol revisions, it is possible to choose either a mobile identification number (MIN) or national mobile subscriber identity (NMSI) as mobile ID. For other protocol revisions, a choice of the mobile ID is not available. To enter a mobile ID is optional. However, together with the MCC (method RsCmwCdma2kSig.Configure.Network.Msettings.mcc) these parameters provide for the R&S CMW the necessary information so that the ‘Connect 1st SO’ softkey (see chapter ‘Connection Control Hotkeys’) can be used without waiting for registration. If an MS is registered, this parameter is updated automatically to the mobile ID of the registered MS. Afterwards when the MS is unregistered the R&S CMW keeps the last information. The parameter can be edit manually or can be updated automatically when another MS is registered.

return

nmsi: Up to 12-digit decimal number Range: 000000000000 to 999999999999 (12 digits)

get_plcm()RsCmwCdma2kSig.enums.PlcmDerivation[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:NETWork:MSETtings:PLCM
value: enums.PlcmDerivation = driver.configure.network.msettings.get_plcm()

Defines how the MS generates its public long code mask (PLCM) .

return

plcm_derivation: ESN | MEID ESN: The electronic serial number (ESN) is used to generate the public long code mask. MEID: The mobile equipment identifier (MEID) is used for the public long code mask.

get_umr_data()bool[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:NETWork:MSETtings:UMRData
value: bool = driver.configure.network.msettings.get_umr_data()

No command help available

return

umr_data: No help available

set_mcc(mob_country_code: int)None[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:NETWork:MSETtings:MCC
driver.configure.network.msettings.set_mcc(mob_country_code = 1)

Specifies the mobile country code (MCC) which is used to set up the connection to the MS. If an MS is registered, this parameter is updated automatically to the MCC of the registered MS. Afterwards when the MS is unregistered the R&S CMW keeps the last information. The parameter can be edit manually or can be updated automatically when an MS with another MCC is registered. The MCC consists of 3 numerical characters (0-9) . It is a part of the IMSI for identifying a mobile subscriber.

param mob_country_code

Range: 0000 to 9999

set_nmsi(nmsi: str)None[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:NETWork:MSETtings:NMSI
driver.configure.network.msettings.set_nmsi(nmsi = '1')

Specifies the mobile ID of the MS which is used to set up the connection to the MS. For some protocol revisions, it is possible to choose either a mobile identification number (MIN) or national mobile subscriber identity (NMSI) as mobile ID. For other protocol revisions, a choice of the mobile ID is not available. To enter a mobile ID is optional. However, together with the MCC (method RsCmwCdma2kSig.Configure.Network.Msettings.mcc) these parameters provide for the R&S CMW the necessary information so that the ‘Connect 1st SO’ softkey (see chapter ‘Connection Control Hotkeys’) can be used without waiting for registration. If an MS is registered, this parameter is updated automatically to the mobile ID of the registered MS. Afterwards when the MS is unregistered the R&S CMW keeps the last information. The parameter can be edit manually or can be updated automatically when another MS is registered.

param nmsi

Up to 12-digit decimal number Range: 000000000000 to 999999999999 (12 digits)

set_plcm(plcm_derivation: RsCmwCdma2kSig.enums.PlcmDerivation)None[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:NETWork:MSETtings:PLCM
driver.configure.network.msettings.set_plcm(plcm_derivation = enums.PlcmDerivation.ESN)

Defines how the MS generates its public long code mask (PLCM) .

param plcm_derivation

ESN | MEID ESN: The electronic serial number (ESN) is used to generate the public long code mask. MEID: The mobile equipment identifier (MEID) is used for the public long code mask.

set_umr_data(umr_data: bool)None[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:NETWork:MSETtings:UMRData
driver.configure.network.msettings.set_umr_data(umr_data = False)

No command help available

param umr_data

No help available

Cloning the Group

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

Subgroups