System

SCPI Commands

CONFigure:CDMA:SIGNaling<Instance>:NETWork:SYSTem:SID
CONFigure:CDMA:SIGNaling<Instance>:NETWork:SYSTem:PREVision
CONFigure:CDMA:SIGNaling<Instance>:NETWork:SYSTem:MPRevision
CONFigure:CDMA:SIGNaling<Instance>:NETWork:SYSTem:BSID
class System[source]

System commands group definition. 7 total commands, 3 Sub-groups, 4 group commands

get_bsid()int[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:NETWork:SYSTem:BSID
value: int = driver.configure.network.system.get_bsid()

Specifies the ID of base station.

return

bsid_number: Range: 0 to 65535 (16 bits)

get_mp_revision()int[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:NETWork:SYSTem:MPRevision
value: int = driver.configure.network.system.get_mp_revision()

Set the minimum protocol revision required from the mobile station.

return

mp_revision: Range: 1 to 7

get_prevision()int[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:NETWork:SYSTem:PREVision
value: int = driver.configure.network.system.get_prevision()

Sets the preferred revision of the protocol for the R&S CMW to use.

return

prevision: Range: 3 to 7

get_sid()int[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:NETWork:SYSTem:SID
value: int = driver.configure.network.system.get_sid()

Defines the 15-bit system ID that the R&S CMW broadcasts on its forward signal.

return

system_id_number: Range: 0 to 32767 (15 bits)

set_bsid(bsid_number: int)None[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:NETWork:SYSTem:BSID
driver.configure.network.system.set_bsid(bsid_number = 1)

Specifies the ID of base station.

param bsid_number

Range: 0 to 65535 (16 bits)

set_mp_revision(mp_revision: int)None[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:NETWork:SYSTem:MPRevision
driver.configure.network.system.set_mp_revision(mp_revision = 1)

Set the minimum protocol revision required from the mobile station.

param mp_revision

Range: 1 to 7

set_prevision(prevision: int)None[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:NETWork:SYSTem:PREVision
driver.configure.network.system.set_prevision(prevision = 1)

Sets the preferred revision of the protocol for the R&S CMW to use.

param prevision

Range: 3 to 7

set_sid(system_id_number: int)None[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:NETWork:SYSTem:SID
driver.configure.network.system.set_sid(system_id_number = 1)

Defines the 15-bit system ID that the R&S CMW broadcasts on its forward signal.

param system_id_number

Range: 0 to 32767 (15 bits)

Cloning the Group

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

Subgroups