Language

SCPI Command :

[CONFigure]:SIGNaling:CMAS:LANGuage
class LanguageCls[source]

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

class GetStruct[source]

Response structure. Fields:

  • Language: str: Two-character language string

  • Cgroup_Language: enums.GroupLanguage: Selects the coding group (GSM 7-bit or UCS-2) . Omitting the value sets G7L.

get(network_scope: str) GetStruct[source]
# SCPI: [CONFigure]:SIGNaling:CMAS:LANGuage
value: GetStruct = driver.configure.signaling.cmas.language.get(network_scope = 'abc')

Selects the language string and sets the coding group for CMAS messages.

param network_scope:

No help available

return:

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

set(network_scope: str, language: str, cgroup_language: GroupLanguage = None) None[source]
# SCPI: [CONFigure]:SIGNaling:CMAS:LANGuage
driver.configure.signaling.cmas.language.set(network_scope = 'abc', language = 'abc', cgroup_language = enums.GroupLanguage.G7L)

Selects the language string and sets the coding group for CMAS messages.

param network_scope:

No help available

param language:

Two-character language string

param cgroup_language:

Selects the coding group (GSM 7-bit or UCS-2) . Omitting the value sets G7L.