Identity

SCPI Commands

CONFigure:CDMA:SIGNaling<Instance>:NETWork:IDENtity:NID
CONFigure:CDMA:SIGNaling<Instance>:NETWork:IDENtity:MCC
CONFigure:CDMA:SIGNaling<Instance>:NETWork:IDENtity:IMSI
CONFigure:CDMA:SIGNaling<Instance>:NETWork:IDENtity:UWCard
class Identity[source]

Identity commands group definition. 4 total commands, 0 Sub-groups, 4 group commands

get_imsi()int[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:NETWork:IDENtity:IMSI
value: int = driver.configure.network.identity.get_imsi()

11th and 12th digits of the IMSI (IMSI_11_12) See method RsCmwCdma2kSig.Configure.Network.Identity.uwcard on how to broadcast the wildcard IMSI_11_12 (and MCC) .

return

imsi_1112: Range: 00 to 99

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

Specifies the 3-digit mobile country code (MCC) . Leading zeros can be omitted. See method RsCmwCdma2kSig.Configure. Network.Identity.uwcard on how to broadcast the wildcard MCC (andIMSI_11_12) .

return

mob_country_code: Range: 000 to 999

get_nid()int[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:NETWork:IDENtity:NID
value: int = driver.configure.network.identity.get_nid()

Specifies the network identification number.

return

network_id_number: Range: 0 to 65535 (16 bits)

get_uwcard()bool[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:NETWork:IDENtity:UWCard
value: bool = driver.configure.network.identity.get_uwcard()

If enabled, the R&S CMW broadcasts the wildcard values binary 1111111111 (decimal 1023) for MNC and binary 1111111 (decimal 127) for IMSI_11_12. See method RsCmwCdma2kSig.Configure.Network.Identity.mcc and method RsCmwCdma2kSig. Configure.Network.Identity.imsi on how to set non/wildcard values for MCC and IMSI_11_12) .

return

use_wildcard: OFF | ON

set_imsi(imsi_1112: int)None[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:NETWork:IDENtity:IMSI
driver.configure.network.identity.set_imsi(imsi_1112 = 1)

11th and 12th digits of the IMSI (IMSI_11_12) See method RsCmwCdma2kSig.Configure.Network.Identity.uwcard on how to broadcast the wildcard IMSI_11_12 (and MCC) .

param imsi_1112

Range: 00 to 99

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

Specifies the 3-digit mobile country code (MCC) . Leading zeros can be omitted. See method RsCmwCdma2kSig.Configure. Network.Identity.uwcard on how to broadcast the wildcard MCC (andIMSI_11_12) .

param mob_country_code

Range: 000 to 999

set_nid(network_id_number: int)None[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:NETWork:IDENtity:NID
driver.configure.network.identity.set_nid(network_id_number = 1)

Specifies the network identification number.

param network_id_number

Range: 0 to 65535 (16 bits)

set_uwcard(use_wildcard: bool)None[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:NETWork:IDENtity:UWCard
driver.configure.network.identity.set_uwcard(use_wildcard = False)

If enabled, the R&S CMW broadcasts the wildcard values binary 1111111111 (decimal 1023) for MNC and binary 1111111 (decimal 127) for IMSI_11_12. See method RsCmwCdma2kSig.Configure.Network.Identity.mcc and method RsCmwCdma2kSig. Configure.Network.Identity.imsi on how to set non/wildcard values for MCC and IMSI_11_12) .

param use_wildcard

OFF | ON