Scenario

SCPI Commands

ROUTe:GSM:MEASurement<Instance>:SCENario:CSPath
ROUTe:GSM:MEASurement<Instance>:SCENario:SALone
ROUTe:GSM:MEASurement<Instance>:SCENario
class Scenario[source]

Scenario commands group definition. 4 total commands, 1 Sub-groups, 3 group commands

class SaloneStruct[source]

Structure for reading output parameters. Fields:

  • Rx_Connector: enums.RxConnector: RF connector for the input path

  • Rf_Converter: enums.RfConverter: RX module for the input path

get_cspath()str[source]
# SCPI: ROUTe:GSM:MEASurement<Instance>:SCENario:CSPath
value: str = driver.route.scenario.get_cspath()

Activates the combined signal path scenario and selects a master firmware application for the GSM measurements. The master controls the signal routing settings and analyzer settings while the combined signal path scenario is active.

return

master: string String parameter containing the master application, e.g. ‘GSM Sig1’ or ‘GSM Sig2’

get_salone()SaloneStruct[source]
# SCPI: ROUTe:GSM:MEASurement<Instance>:SCENario:SALone
value: SaloneStruct = driver.route.scenario.get_salone()

Activates the standalone scenario and selects the RF input path for the measured RF signal. For possible connector and converter values, see ‘Values for RF Path Selection’.

return

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

get_value()RsCmwGsmMeas.enums.Scenario[source]
# SCPI: ROUTe:GSM:MEASurement<Instance>:SCENario
value: enums.Scenario = driver.route.scenario.get_value()

Queries the active scenario.

return

scenario: SALone | CSPath | MAPRotocol Standalone, combined signal path, measure at protocol test

set_cspath(master: str)None[source]
# SCPI: ROUTe:GSM:MEASurement<Instance>:SCENario:CSPath
driver.route.scenario.set_cspath(master = '1')

Activates the combined signal path scenario and selects a master firmware application for the GSM measurements. The master controls the signal routing settings and analyzer settings while the combined signal path scenario is active.

param master

string String parameter containing the master application, e.g. ‘GSM Sig1’ or ‘GSM Sig2’

set_salone(value: RsCmwGsmMeas.Implementations.Route_.Scenario.Scenario.SaloneStruct)None[source]
# SCPI: ROUTe:GSM:MEASurement<Instance>:SCENario:SALone
driver.route.scenario.set_salone(value = SaloneStruct())

Activates the standalone scenario and selects the RF input path for the measured RF signal. For possible connector and converter values, see ‘Values for RF Path Selection’.

param value

see the help for SaloneStruct structure arguments.

Cloning the Group

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

Subgroups