Route

SCPI Commands

ROUTe:GSM:SIGNaling<Instance>
class Route[source]

Route commands group definition. 9 total commands, 1 Sub-groups, 1 group commands

class ValueStruct[source]

Structure for reading output parameters. Fields:

  • Scenario: enums.Scenario: SCEL | IORI | BATC | SCF | SCFDiversity SCEL: ‘Standard Cell’ IORI: ‘IQ out - RF in’ BATC: ‘BCCH and TCH/PDCH’ SCF: ‘Standard Cell Fading’ SCFDiversity: ‘Standard Cell Fading with RX Diversity’

  • Controller: str: For future use - returned value not relevant

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

  • Rx_Converter: enums.RxConverter: RX module for the input path

  • Tx_Connector_1: enums.TxConnector: RF or DIG IQ OUT connector for output path 1

  • Tx_Converter_1: enums.TxConverter: TX or I/Q module for output path 1

  • Tx_Connector_2: enums.TxConnector: RF connector for output path 2, only returned for scenarios with two RF output paths

  • Tx_Converter_2: enums.TxConverter: TX module for output path 2, only returned for scenarios with two RF output paths

  • Iq_1_Connector: enums.TxConnector: DIG IQ OUT connector for the first output path, only returned for scenarios with external fading

  • Iq_2_Connector: enums.TxConnector: DIG IQ OUT connector for the second output path, only returned for scenarios with external fading with two paths

  • Fader: enums.FadingBoard: I/Q board used for internal fading

get_value()ValueStruct[source]
# SCPI: ROUTe:GSM:SIGNaling<Instance>
value: ValueStruct = driver.route.get_value()

Returns the configured routing settings. The number of returned values depends on the active scenario (6 to 10 values) . For possible connector, converter and fader values, see ‘Values for Signal Path Selection’.

return

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

Cloning the Group

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

Subgroups