Mnc

SCPI Commands

CONFigure:WCDMa:SIGNaling<Instance>:CELL:MNC:DIGits
CONFigure:WCDMa:SIGNaling<Instance>:CELL:MNC
class Mnc[source]

Mnc commands group definition. 2 total commands, 0 Sub-groups, 2 group commands

class ValueStruct[source]

Structure for reading output parameters. Fields:

  • Value: int: Range: 0 to 99 or 999 depending on NrOfDigits

  • Nr_Of_Digits: enums.NrOfDigits: D2 | D3 D2: two-digit MNC D3: three-digit MNC

get_digits()RsCmwWcdmaSig.enums.NrOfDigits[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:MNC:DIGits
value: enums.NrOfDigits = driver.configure.cell.mnc.get_digits()

Specifies the size of mobile network code (MNC) . A two or three-digit MNC can be selected.

return

no_digits: D2 | D3 D2: two-digit MNC D3: three-digit MNC

get_value()ValueStruct[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:MNC
value: ValueStruct = driver.configure.cell.mnc.get_value()

Specifies the mobile network code (MNC) . A two or three-digit MNC can be set. Leading zeros can be omitted.

return

structure: for return value, see the help for ValueStruct structure arguments.

set_digits(no_digits: RsCmwWcdmaSig.enums.NrOfDigits)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:MNC:DIGits
driver.configure.cell.mnc.set_digits(no_digits = enums.NrOfDigits.D2)

Specifies the size of mobile network code (MNC) . A two or three-digit MNC can be selected.

param no_digits

D2 | D3 D2: two-digit MNC D3: three-digit MNC

set_value(value: RsCmwWcdmaSig.Implementations.Configure_.Cell_.Mnc.Mnc.ValueStruct)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:CELL:MNC
driver.configure.cell.mnc.set_value(value = ValueStruct())

Specifies the mobile network code (MNC) . A two or three-digit MNC can be set. Leading zeros can be omitted.

param value

see the help for ValueStruct structure arguments.