Sector

SCPI Commands

CONFigure:EVDO:SIGNaling<Instance>:NETWork:SECTor:PNOFfset
CONFigure:EVDO:SIGNaling<Instance>:NETWork:SECTor:CLRCode
CONFigure:EVDO:SIGNaling<Instance>:NETWork:SECTor:SMASk
CONFigure:EVDO:SIGNaling<Instance>:NETWork:SECTor:CNTCode
CONFigure:EVDO:SIGNaling<Instance>:NETWork:SECTor:FORMat
CONFigure:EVDO:SIGNaling<Instance>:NETWork:SECTor:NPBits
CONFigure:EVDO:SIGNaling<Instance>:NETWork:SECTor:IDOVerall
class Sector[source]

Sector commands group definition. 9 total commands, 1 Sub-groups, 7 group commands

get_clr_code()int[source]
# SCPI: CONFigure:EVDO:SIGNaling<instance>:NETWork:SECTor:CLRCode
value: int = driver.configure.network.sector.get_clr_code()

Defines the 8-bit color code of the sector.

return

clr_code: Range: 0 to 255

get_cnt_code()int[source]
# SCPI: CONFigure:EVDO:SIGNaling<instance>:NETWork:SECTor:CNTCode
value: int = driver.configure.network.sector.get_cnt_code()

Defines the 3-digit decimal representation of the country code associated with the sector.

return

cnt_code: Range: 0 to 999

get_format_py()RsCmwEvdoSig.enums.SectorIdFormat[source]
# SCPI: CONFigure:EVDO:SIGNaling<instance>:NETWork:SECTor:FORMat
value: enums.SectorIdFormat = driver.configure.network.sector.get_format_py()

Selects the input format for the 128-bit overall sector ID.

return

format_py: A41N | MANual ANSI-41 or manual entry

get_id_overall()str[source]
# SCPI: CONFigure:EVDO:SIGNaling<instance>:NETWork:SECTor:IDOVerall
value: str = driver.configure.network.sector.get_id_overall()

Queries the 128-bit overall ID of the sector in ANSI-41 format (method RsCmwEvdoSig.Configure.Network.Sector.formatPy) .

return

ansi_41_overall_id: 32-digit hexadecimal number

get_npbits()int[source]
# SCPI: CONFigure:EVDO:SIGNaling<instance>:NETWork:SECTor:NPBits
value: int = driver.configure.network.sector.get_npbits()

Defines the number of parity bits, to be used if the ANSI-41 format is selected (method RsCmwEvdoSig.Configure.Network. Sector.formatPy) .

return

ansi_41_pbits: Range: 1 to 64

get_pn_offset()int[source]
# SCPI: CONFigure:EVDO:SIGNaling<instance>:NETWork:SECTor:PNOFfset
value: int = driver.configure.network.sector.get_pn_offset()

Defines the pilot PN offset index of the generated forward 1xEV-DO signal.

return

pn_offset: Range: 0 to 511

get_smask()int[source]
# SCPI: CONFigure:EVDO:SIGNaling<instance>:NETWork:SECTor:SMASk
value: int = driver.configure.network.sector.get_smask()

Defines the 8-bit sector subnet identifier.

return

smask: Range: 0 to 128

set_clr_code(clr_code: int)None[source]
# SCPI: CONFigure:EVDO:SIGNaling<instance>:NETWork:SECTor:CLRCode
driver.configure.network.sector.set_clr_code(clr_code = 1)

Defines the 8-bit color code of the sector.

param clr_code

Range: 0 to 255

set_cnt_code(cnt_code: int)None[source]
# SCPI: CONFigure:EVDO:SIGNaling<instance>:NETWork:SECTor:CNTCode
driver.configure.network.sector.set_cnt_code(cnt_code = 1)

Defines the 3-digit decimal representation of the country code associated with the sector.

param cnt_code

Range: 0 to 999

set_format_py(format_py: RsCmwEvdoSig.enums.SectorIdFormat)None[source]
# SCPI: CONFigure:EVDO:SIGNaling<instance>:NETWork:SECTor:FORMat
driver.configure.network.sector.set_format_py(format_py = enums.SectorIdFormat.A41N)

Selects the input format for the 128-bit overall sector ID.

param format_py

A41N | MANual ANSI-41 or manual entry

set_npbits(ansi_41_pbits: int)None[source]
# SCPI: CONFigure:EVDO:SIGNaling<instance>:NETWork:SECTor:NPBits
driver.configure.network.sector.set_npbits(ansi_41_pbits = 1)

Defines the number of parity bits, to be used if the ANSI-41 format is selected (method RsCmwEvdoSig.Configure.Network. Sector.formatPy) .

param ansi_41_pbits

Range: 1 to 64

set_pn_offset(pn_offset: int)None[source]
# SCPI: CONFigure:EVDO:SIGNaling<instance>:NETWork:SECTor:PNOFfset
driver.configure.network.sector.set_pn_offset(pn_offset = 1)

Defines the pilot PN offset index of the generated forward 1xEV-DO signal.

param pn_offset

Range: 0 to 511

set_smask(smask: int)None[source]
# SCPI: CONFigure:EVDO:SIGNaling<instance>:NETWork:SECTor:SMASk
driver.configure.network.sector.set_smask(smask = 1)

Defines the 8-bit sector subnet identifier.

param smask

Range: 0 to 128

Cloning the Group

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

Subgroups