Gsm

SCPI Command :

PREPare:LTE:SIGNaling<instance>:HANDover:EXTernal:GSM
class GsmCls[source]

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

class GsmStruct[source]

Response structure. Fields:

  • Band: enums.GsmBand: G085 | G09 | G18 | G19 GSM 850, GSM 900, GSM 1800, GSM 1900

  • Dl_Channel: int: decimal Channel number used for the BCCH Range: depends on GSM band, see table below

  • Band_Indicator: enums.BandIndicator: G18 | G19 Band indicator for distinction of GSM 1800 and GSM 1900 bands. The two bands partially use the same channel numbers for different frequencies.

get() GsmStruct[source]
# SCPI: PREPare:LTE:SIGNaling<instance>:HANDover:EXTernal:GSM
value: GsmStruct = driver.prepare.handover.external.gsm.get()

Configures the destination parameters for handover to a GSM destination at another instrument.

return:

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

set(band: GsmBand, dl_channel: int, band_indicator: BandIndicator) None[source]
# SCPI: PREPare:LTE:SIGNaling<instance>:HANDover:EXTernal:GSM
driver.prepare.handover.external.gsm.set(band = enums.GsmBand.G04, dl_channel = 1, band_indicator = enums.BandIndicator.G18)

Configures the destination parameters for handover to a GSM destination at another instrument.

param band:

G085 | G09 | G18 | G19 GSM 850, GSM 900, GSM 1800, GSM 1900

param dl_channel:

decimal Channel number used for the BCCH Range: depends on GSM band, see table below

param band_indicator:

G18 | G19 Band indicator for distinction of GSM 1800 and GSM 1900 bands. The two bands partially use the same channel numbers for different frequencies.