Route

SCPI Command :

CONFigure:BLUetooth:MEASurement<Instance>:RXQuality:ROUTe
class RouteCls[source]

Route commands group definition. 2 total commands, 1 Subgroups, 1 group commands

class RouteStruct[source]

Response structure. Fields:

  • Tx_Connector: enums.TxConnector: RF connector for the output path

  • Rf_Converter: enums.TxConverter: TX module for the output path

get() RouteStruct[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:RXQuality:ROUTe
value: RouteStruct = driver.configure.rxQuality.route.get()

Selects the RF output path for the RF signal generated using ARB files. For possible TX module values, see ‘Values for RF path selection’.

return:

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

set(tx_connector: TxConnector, rf_converter: TxConverter) None[source]
# SCPI: CONFigure:BLUetooth:MEASurement<Instance>:RXQuality:ROUTe
driver.configure.rxQuality.route.set(tx_connector = enums.TxConnector.I12O, rf_converter = enums.TxConverter.ITX1)

Selects the RF output path for the RF signal generated using ARB files. For possible TX module values, see ‘Values for RF path selection’.

param tx_connector:

RF connector for the output path

param rf_converter:

TX module for the output path

Cloning the Group

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

Subgroups