Plmn<Plnm>

RepCap Settings

# Range: Nr1 .. Nr5
rc = driver.configure.connection.hotspot.plmn.repcap_plnm_get()
driver.configure.connection.hotspot.plmn.repcap_plnm_set(repcap.Plnm.Nr1)

SCPI Command :

CONFigure:WLAN:SIGNaling<instance>:CONNection:HOTSpot:PLMN<nr>
class PlmnCls[source]

Plmn commands group definition. 1 total commands, 0 Subgroups, 1 group commands Repeated Capability: Plnm, default value after init: Plnm.Nr1

class PlmnStruct[source]

Response structure. Fields:

  • State: bool: OFF | ON Disables/enables the list entry

  • Mcc: int: integer Mobile country code Range: 1 to 999

  • Mnc: int: integer Mobile network code Range: Depends on NumOfDigits

  • Num_Of_Digits: enums.NumOfDigits: TWDigits | THDigits Length of the MNC TWDigits: two digits (1 to 99) THDigits: three digits (1 to 999)

get(plnm=Plnm.Default) PlmnStruct[source]
# SCPI: CONFigure:WLAN:SIGNaling<instance>:CONNection:HOTSpot:PLMN<nr>
value: PlmnStruct = driver.configure.connection.hotspot.plmn.get(plnm = repcap.Plnm.Default)

Defines a list of 3GPP networks that the hotspot provides service for. The MCC and MNC of the first PLMN can also be defined via method RsCmwWlanSig.Configure.Connection.Hotspot.hspar.

param plnm:

optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Plmn’)

return:

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

set(state: bool, mcc: int, mnc: int, num_of_digits: NumOfDigits, plnm=Plnm.Default) None[source]
# SCPI: CONFigure:WLAN:SIGNaling<instance>:CONNection:HOTSpot:PLMN<nr>
driver.configure.connection.hotspot.plmn.set(state = False, mcc = 1, mnc = 1, num_of_digits = enums.NumOfDigits.THDigits, plnm = repcap.Plnm.Default)

Defines a list of 3GPP networks that the hotspot provides service for. The MCC and MNC of the first PLMN can also be defined via method RsCmwWlanSig.Configure.Connection.Hotspot.hspar.

param state:

OFF | ON Disables/enables the list entry

param mcc:

integer Mobile country code Range: 1 to 999

param mnc:

integer Mobile network code Range: Depends on NumOfDigits

param num_of_digits:

TWDigits | THDigits Length of the MNC TWDigits: two digits (1 to 99) THDigits: three digits (1 to 999)

param plnm:

optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Plmn’)

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.configure.connection.hotspot.plmn.clone()