Configure

SCPI Commands

CONFigure:GSM:MEASurement<Instance>:BAND
CONFigure:GSM:MEASurement<Instance>:CHANnel
class Configure[source]

Configure commands group definition. 130 total commands, 2 Sub-groups, 2 group commands

get_band()RsCmwGsmMeas.enums.Band[source]
# SCPI: CONFigure:GSM:MEASurement<Instance>:BAND
value: enums.Band = driver.configure.get_band()
Selects the GSM frequency band.

INTRO_CMD_HELP: For the combined signal path scenario, use:

  • CONFigure:GSM:SIGN<i>:BAND:BCCH

  • SENSe:GSM:SIGN<i>:BAND:TCH

return

band: G04 | G085 | G09 | G18 | G19 | GG08 G04: GSM400 G085: GSM850 G09: GSM900 G18: GSM1800 G19: GSM1900 GG08: GSMGT800

get_channel()int[source]
# SCPI: CONFigure:GSM:MEASurement<Instance>:CHANnel
value: int = driver.configure.get_channel()

Selects the channel number. The channel number must be valid for the current frequency band, for dependencies see ‘GSM Frequency Bands and Channels’. The corresponding center frequency (method RsCmwGsmMeas.Configure.RfSettings.frequency) is calculated and set.

INTRO_CMD_HELP: For the combined signal path scenario, use:

  • CONFigure:GSM:SIGN<i>:RFSettings:CHANnel

  • CONFigure:GSM:SIGN<i>:RFSettings:CHCCombined:TCH:CSWitched

  • CONFigure:GSM:SIGN<i>:RFSettings:HOPPing:ENABle

  • CONFigure:GSM:SIGN<i>:RFSettings:HOPPing:MAIO

  • CONFigure:GSM:SIGN<i>:RFSettings:HOPPing:HSN

  • CONFigure:GSM:SIGN<i>:RFSettings:HOPPing:SEQuence

return

channel: decimal GSM channel number Range: depends on frequency band

set_band(band: RsCmwGsmMeas.enums.Band)None[source]
# SCPI: CONFigure:GSM:MEASurement<Instance>:BAND
driver.configure.set_band(band = enums.Band.G04)
Selects the GSM frequency band.

INTRO_CMD_HELP: For the combined signal path scenario, use:

  • CONFigure:GSM:SIGN<i>:BAND:BCCH

  • SENSe:GSM:SIGN<i>:BAND:TCH

param band

G04 | G085 | G09 | G18 | G19 | GG08 G04: GSM400 G085: GSM850 G09: GSM900 G18: GSM1800 G19: GSM1900 GG08: GSMGT800

set_channel(channel: int)None[source]
# SCPI: CONFigure:GSM:MEASurement<Instance>:CHANnel
driver.configure.set_channel(channel = 1)

Selects the channel number. The channel number must be valid for the current frequency band, for dependencies see ‘GSM Frequency Bands and Channels’. The corresponding center frequency (method RsCmwGsmMeas.Configure.RfSettings.frequency) is calculated and set.

INTRO_CMD_HELP: For the combined signal path scenario, use:

  • CONFigure:GSM:SIGN<i>:RFSettings:CHANnel

  • CONFigure:GSM:SIGN<i>:RFSettings:CHCCombined:TCH:CSWitched

  • CONFigure:GSM:SIGN<i>:RFSettings:HOPPing:ENABle

  • CONFigure:GSM:SIGN<i>:RFSettings:HOPPing:MAIO

  • CONFigure:GSM:SIGN<i>:RFSettings:HOPPing:HSN

  • CONFigure:GSM:SIGN<i>:RFSettings:HOPPing:SEQuence

param channel

decimal GSM channel number Range: depends on frequency band

Cloning the Group

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

Subgroups