Serial

SCPI Command :

CONFigure:LTE:SIGNaling<instance>:CBS:MESSage:SERial
class SerialCls[source]

Serial commands group definition. 1 total commands, 0 Subgroups, 1 group commands

class SerialStruct[source]

Response structure. Fields:

  • Geo_Scope: enums.GeoScope: CIMMediate | PLMN | LOCation | CNORmal Geographical scope CIMMediate: cell immediate PLMN: PLMN normal LOCation: tracking area normal CNORmal: cell normal

  • Message_Code: int: numeric Range: 0 to 1023

  • Auto_Incr: bool: OFF | ON OFF: UpdateNumber is not changed automatically ON: UpdateNumber is increased if message is changed

  • Update_Number: int: numeric Range: 0 to 15

get() SerialStruct[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CBS:MESSage:SERial
value: SerialStruct = driver.configure.cbs.message.serial.get()

Specifies the serial number, consisting of the geographical scope, the message code and the update number.

return:

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

set(geo_scope: GeoScope, message_code: int, auto_incr: bool, update_number: int = None) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CBS:MESSage:SERial
driver.configure.cbs.message.serial.set(geo_scope = enums.GeoScope.CIMMediate, message_code = 1, auto_incr = False, update_number = 1)

Specifies the serial number, consisting of the geographical scope, the message code and the update number.

param geo_scope:

CIMMediate | PLMN | LOCation | CNORmal Geographical scope CIMMediate: cell immediate PLMN: PLMN normal LOCation: tracking area normal CNORmal: cell normal

param message_code:

numeric Range: 0 to 1023

param auto_incr:

OFF | ON OFF: UpdateNumber is not changed automatically ON: UpdateNumber is increased if message is changed

param update_number:

numeric Range: 0 to 15