ListPy

SCPI Commands

CONFigure:CDMA:MEASurement<Instance>:MEValuation:LIST:COUNt
CONFigure:CDMA:MEASurement<Instance>:MEValuation:LIST
class ListPy[source]

ListPy commands group definition. 7 total commands, 2 Sub-groups, 2 group commands

get_count()int[source]
# SCPI: CONFigure:CDMA:MEASurement<Instance>:MEValuation:LIST:COUNt
value: int = driver.configure.multiEval.listPy.get_count()

Defines the number of segments in the entire measurement interval.

return

segments: numeric Range: 1 to 200

get_value()bool[source]
# SCPI: CONFigure:CDMA:MEASurement<Instance>:MEValuation:LIST
value: bool = driver.configure.multiEval.listPy.get_value()

Enables or disables the list mode.

return

enable: OFF | ON ON: Enable list mode OFF: Disable list mode

set_count(segments: int)None[source]
# SCPI: CONFigure:CDMA:MEASurement<Instance>:MEValuation:LIST:COUNt
driver.configure.multiEval.listPy.set_count(segments = 1)

Defines the number of segments in the entire measurement interval.

param segments

numeric Range: 1 to 200

set_value(enable: bool)None[source]
# SCPI: CONFigure:CDMA:MEASurement<Instance>:MEValuation:LIST
driver.configure.multiEval.listPy.set_value(enable = False)

Enables or disables the list mode.

param enable

OFF | ON ON: Enable list mode OFF: Disable list mode

Cloning the Group

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

Subgroups