Select

SCPI Commands

CONFigure:DATA:MEASurement<MeasInstance>:SELect:APP
CONFigure:DATA:MEASurement<MeasInstance>:SELect:THRoughput
class Select[source]

Select commands group definition. 2 total commands, 0 Sub-groups, 2 group commands

get_app()RsCmwDau.enums.ApplicationType[source]
# SCPI: CONFigure:DATA:MEASurement<Instance>:SELect:APP
value: enums.ApplicationType = driver.configure.data.measurement.select.get_app()

Selects the measurement tab to be displayed.

return

application_type: OVERview | PING | IPERf | THRoughput | DNSReq | IPLogging | IPANalysis | IPReplay | AUDiodelay

get_throughput()RsCmwDau.enums.ThroughputType[source]
# SCPI: CONFigure:DATA:MEASurement<Instance>:SELect:THRoughput
value: enums.ThroughputType = driver.configure.data.measurement.select.get_throughput()

Selects the overall throughput tab or the RAN throughput tab for display at the GUI. This command is useful for taking screenshots via remote commands.

return

throughput_type: OVERall | RAN

set_app(application_type: RsCmwDau.enums.ApplicationType)None[source]
# SCPI: CONFigure:DATA:MEASurement<Instance>:SELect:APP
driver.configure.data.measurement.select.set_app(application_type = enums.ApplicationType.AUDiodelay)

Selects the measurement tab to be displayed.

param application_type

OVERview | PING | IPERf | THRoughput | DNSReq | IPLogging | IPANalysis | IPReplay | AUDiodelay

set_throughput(throughput_type: RsCmwDau.enums.ThroughputType)None[source]
# SCPI: CONFigure:DATA:MEASurement<Instance>:SELect:THRoughput
driver.configure.data.measurement.select.set_throughput(throughput_type = enums.ThroughputType.OVERall)

Selects the overall throughput tab or the RAN throughput tab for display at the GUI. This command is useful for taking screenshots via remote commands.

param throughput_type

OVERall | RAN