Registration

SCPI Commands

CONFigure:CDMA:SIGNaling<Instance>:NETWork:REGistration:DBASed
CONFigure:CDMA:SIGNaling<Instance>:NETWork:REGistration:TBASed
CONFigure:CDMA:SIGNaling<Instance>:NETWork:REGistration:HOME
CONFigure:CDMA:SIGNaling<Instance>:NETWork:REGistration:FSID
CONFigure:CDMA:SIGNaling<Instance>:NETWork:REGistration:FNID
CONFigure:CDMA:SIGNaling<Instance>:NETWork:REGistration:PUP
CONFigure:CDMA:SIGNaling<Instance>:NETWork:REGistration:PDOWn
CONFigure:CDMA:SIGNaling<Instance>:NETWork:REGistration:PARameter
class Registration[source]

Registration commands group definition. 8 total commands, 0 Sub-groups, 8 group commands

get_dbased()float[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:NETWork:REGistration:DBASed
value: float or bool = driver.configure.network.registration.get_dbased()

Gets/sets the distance threshold for distance-based registration. See ‘Distance-based Registration’ for details. Setting the value to 0 disables distance-based registration.

return

distance_based: Range: 0 to 2047 (#H7FF) Additional OFF/ON disables / enables the distance-based registration.

get_fnid()bool[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:NETWork:REGistration:FNID
value: bool = driver.configure.network.registration.get_fnid()

Enables or disables autonomous registrations for foreign SID roamers, see ‘Autonomous Registration (Home / Foreign SID / Foreign NID) ‘. Use method RsCmwCdma2kSig.Configure.Network.System.sid and method RsCmwCdma2kSig.Configure.Network. Identity.nid to set the system and network ID.

return

foreign_nid: OFF | ON

get_fsid()bool[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:NETWork:REGistration:FSID
value: bool = driver.configure.network.registration.get_fsid()

Enables or disables autonomous registrations for foreign SID roamers, see ‘Autonomous Registration (Home / Foreign SID / Foreign NID) ‘. Use method RsCmwCdma2kSig.Configure.Network.System.sid to set the system ID.

return

foreign_sid: OFF | ON

get_home()bool[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:NETWork:REGistration:HOME
value: bool = driver.configure.network.registration.get_home()

Enables or disables autonomous registrations for home users, see ‘Autonomous Registration (Home / Foreign SID / Foreign NID) ‘. Use method RsCmwCdma2kSig.Configure.Network.System.sid and method RsCmwCdma2kSig.Configure.Network.Identity. nid to set the system and network ID.

return

home: OFF | ON

get_parameter()bool[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:NETWork:REGistration:PARameter
value: bool = driver.configure.network.registration.get_parameter()

Enables or disables parameter-change registration, see ‘Parameter-change Registration’.

return

parameter_reg: OFF | ON

get_pdown()bool[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:NETWork:REGistration:PDOWn
value: bool = driver.configure.network.registration.get_pdown()

Enables or disables power-down registration, see ‘Power-down Registration’.

return

power_down: OFF | ON

get_pup()bool[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:NETWork:REGistration:PUP
value: bool = driver.configure.network.registration.get_pup()

Enables or disables power-up registration, see ‘Power-up Registration’.

return

power_up: OFF | ON

get_tbased()float[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:NETWork:REGistration:TBASed
value: float or bool = driver.configure.network.registration.get_tbased()

Turns timer-based registration OFF/ON and/or defines the registration interval in seconds. A numeric value must be between 12.16 and 199515.84, inclusive; it is rounded to the closest value in: See ‘Timer-based Registration’ for details.

return

timer_based: Range: OFF | ON | 12.16 | 14.48 | 17.20 | 20.48 | 24.32 | 28.96 | 34.40 | 40.96 | 48.64 | 57.92 | 68.88 | 81.92 | 97.36 | 115.84 | 137.76 | 163.84 | 194.80 | 231.68 | 275.52 | 327.68 | 389.60 | 463.36 | 551.04 | 655.36 | 779.28 | 926.80 | 1102.16 | 1310.72 | 1558.64 | 1853.60 | 2204.32 | 2621.44 | 3117.36 | 3707.20 | 4408.64 | 5242.88 | 6234.80 | 7414.48 | 8817.36 | 10485.76 | 12469.68 | 14829.04 | 17634.80 | 20971.52 | 24939.44 | 29658.16 | 35269.68 | 41943.04 | 49878.96 | 59316.40 | 70529.44 | 83886.08 | 99757.92 | 118632.80 | 141078.96 | 167772.16 | 199515.84 Additional OFF/ON disables / enables the timer-based registration.

set_dbased(distance_based: float)None[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:NETWork:REGistration:DBASed
driver.configure.network.registration.set_dbased(distance_based = 1.0)

Gets/sets the distance threshold for distance-based registration. See ‘Distance-based Registration’ for details. Setting the value to 0 disables distance-based registration.

param distance_based

Range: 0 to 2047 (#H7FF) Additional OFF/ON disables / enables the distance-based registration.

set_fnid(foreign_nid: bool)None[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:NETWork:REGistration:FNID
driver.configure.network.registration.set_fnid(foreign_nid = False)

Enables or disables autonomous registrations for foreign SID roamers, see ‘Autonomous Registration (Home / Foreign SID / Foreign NID) ‘. Use method RsCmwCdma2kSig.Configure.Network.System.sid and method RsCmwCdma2kSig.Configure.Network. Identity.nid to set the system and network ID.

param foreign_nid

OFF | ON

set_fsid(foreign_sid: bool)None[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:NETWork:REGistration:FSID
driver.configure.network.registration.set_fsid(foreign_sid = False)

Enables or disables autonomous registrations for foreign SID roamers, see ‘Autonomous Registration (Home / Foreign SID / Foreign NID) ‘. Use method RsCmwCdma2kSig.Configure.Network.System.sid to set the system ID.

param foreign_sid

OFF | ON

set_home(home: bool)None[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:NETWork:REGistration:HOME
driver.configure.network.registration.set_home(home = False)

Enables or disables autonomous registrations for home users, see ‘Autonomous Registration (Home / Foreign SID / Foreign NID) ‘. Use method RsCmwCdma2kSig.Configure.Network.System.sid and method RsCmwCdma2kSig.Configure.Network.Identity. nid to set the system and network ID.

param home

OFF | ON

set_parameter(parameter_reg: bool)None[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:NETWork:REGistration:PARameter
driver.configure.network.registration.set_parameter(parameter_reg = False)

Enables or disables parameter-change registration, see ‘Parameter-change Registration’.

param parameter_reg

OFF | ON

set_pdown(power_down: bool)None[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:NETWork:REGistration:PDOWn
driver.configure.network.registration.set_pdown(power_down = False)

Enables or disables power-down registration, see ‘Power-down Registration’.

param power_down

OFF | ON

set_pup(power_up: bool)None[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:NETWork:REGistration:PUP
driver.configure.network.registration.set_pup(power_up = False)

Enables or disables power-up registration, see ‘Power-up Registration’.

param power_up

OFF | ON

set_tbased(timer_based: float)None[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:NETWork:REGistration:TBASed
driver.configure.network.registration.set_tbased(timer_based = 1.0)

Turns timer-based registration OFF/ON and/or defines the registration interval in seconds. A numeric value must be between 12.16 and 199515.84, inclusive; it is rounded to the closest value in: See ‘Timer-based Registration’ for details.

param timer_based

Range: OFF | ON | 12.16 | 14.48 | 17.20 | 20.48 | 24.32 | 28.96 | 34.40 | 40.96 | 48.64 | 57.92 | 68.88 | 81.92 | 97.36 | 115.84 | 137.76 | 163.84 | 194.80 | 231.68 | 275.52 | 327.68 | 389.60 | 463.36 | 551.04 | 655.36 | 779.28 | 926.80 | 1102.16 | 1310.72 | 1558.64 | 1853.60 | 2204.32 | 2621.44 | 3117.36 | 3707.20 | 4408.64 | 5242.88 | 6234.80 | 7414.48 | 8817.36 | 10485.76 | 12469.68 | 14829.04 | 17634.80 | 20971.52 | 24939.44 | 29658.16 | 35269.68 | 41943.04 | 49878.96 | 59316.40 | 70529.44 | 83886.08 | 99757.92 | 118632.80 | 141078.96 | 167772.16 | 199515.84 Additional OFF/ON disables / enables the timer-based registration.