Usage

SCPI Command :

CONFigure:GPRF:GENerator<Instance>:SPATh:USAGe
class UsageCls[source]

Usage commands group definition. 3 total commands, 1 Subgroups, 1 group commands

get_value() List[bool][source]
# SCPI: CONFigure:GPRF:GENerator<Instance>:SPATh:USAGe
value: List[bool] = driver.configure.gprf.generator.spath.usage.get_value()

Activates or deactivates the individual RF connectors of the active connector group (global definition) . Select the connector group via method RsCMPX_Gprf.Route.Gprf.Generator.Spath.value. Query a list of the connectors of the connector group via method RsCMPX_Gprf.Catalog.Gprf.Generator.Spath.Group.connector.

return:

enable: Comma-separated list of values, one value per connector of the connector group. ON: activate the connector OFF: deactivate the connector

set_value(enable: List[bool]) None[source]
# SCPI: CONFigure:GPRF:GENerator<Instance>:SPATh:USAGe
driver.configure.gprf.generator.spath.usage.set_value(enable = [True, False, True])

Activates or deactivates the individual RF connectors of the active connector group (global definition) . Select the connector group via method RsCMPX_Gprf.Route.Gprf.Generator.Spath.value. Query a list of the connectors of the connector group via method RsCMPX_Gprf.Catalog.Gprf.Generator.Spath.Group.connector.

param enable:

Comma-separated list of values, one value per connector of the connector group. ON: activate the connector OFF: deactivate the connector

Cloning the Group

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

Subgroups