Imsi

SCPI Commands

CONFigure:GSM:SIGNaling<Instance>:CELL:IMSI:FILTer
CONFigure:GSM:SIGNaling<Instance>:CELL:IMSI
class Imsi[source]

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

class ValueStruct[source]

Structure for reading output parameters. Fields:

  • Mcc: int: Range: 0 to 999

  • Mnc: int: Range: 01 to 99 (2-digit MNC) or 001 to 999 (3-digit MNC)

  • Msin: int: Range: 0 to 9999999999 (2-digit MNC) or 0 to 999999999 (3-digit MNC)

get_filter_py()bool[source]
# SCPI: CONFigure:GSM:SIGNaling<Instance>:CELL:IMSI:FILTer
value: bool = driver.configure.cell.imsi.get_filter_py()

If enabled, the R&S CMW allows only the default IMSI to execute location update and attach.

return

enable: OFF | ON

get_value()ValueStruct[source]
# SCPI: CONFigure:GSM:SIGNaling<Instance>:CELL:IMSI
value: ValueStruct = driver.configure.cell.imsi.get_value()

Defines the default IMSI which is used to set up the connection if the mobile does not initiate a location update. See also method RsCmwGsmSig.Configure.Cell.lupdate.

return

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

set_filter_py(enable: bool)None[source]
# SCPI: CONFigure:GSM:SIGNaling<Instance>:CELL:IMSI:FILTer
driver.configure.cell.imsi.set_filter_py(enable = False)

If enabled, the R&S CMW allows only the default IMSI to execute location update and attach.

param enable

OFF | ON

set_value(value: RsCmwGsmSig.Implementations.Configure_.Cell_.Imsi.Imsi.ValueStruct)None[source]
# SCPI: CONFigure:GSM:SIGNaling<Instance>:CELL:IMSI
driver.configure.cell.imsi.set_value(value = ValueStruct())

Defines the default IMSI which is used to set up the connection if the mobile does not initiate a location update. See also method RsCmwGsmSig.Configure.Cell.lupdate.

param value

see the help for ValueStruct structure arguments.