ListPy

SCPI Commands

CONFigure:WCDMa:MEASurement<Instance>:MEValuation:LIST:EOFFset
CONFigure:WCDMa:MEASurement<Instance>:MEValuation:LIST:COUNt
CONFigure:WCDMa:MEASurement<Instance>:MEValuation:LIST:OSINdex
CONFigure:WCDMa:MEASurement<Instance>:MEValuation:LIST
class ListPy[source]

ListPy commands group definition. 12 total commands, 2 Sub-groups, 4 group commands

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

Defines the number of segments in the entire measurement interval, including active and inactive segments.

return

segments: numeric Range: 1 to 1000

get_eoffset()int[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:MEValuation:LIST:EOFFset
value: int = driver.configure.multiEval.listPy.get_eoffset()

Defines the evaluation offset. The specified number of slots at the beginning of each segment is excluded from the evaluation. Set the trigger delay to 0 when using an evaluation offset (see method RsCmwWcdmaMeas.Trigger.MultiEval. delay) .

return

offset: numeric Range: 0 slots to 1024 slots

get_os_index()int[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:MEValuation:LIST:OSINdex
value: int = driver.configure.multiEval.listPy.get_os_index()

No command help available

return

index: No help available

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

Enables or disables the list mode.

return

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

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

Defines the number of segments in the entire measurement interval, including active and inactive segments.

param segments

numeric Range: 1 to 1000

set_eoffset(offset: int)None[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:MEValuation:LIST:EOFFset
driver.configure.multiEval.listPy.set_eoffset(offset = 1)

Defines the evaluation offset. The specified number of slots at the beginning of each segment is excluded from the evaluation. Set the trigger delay to 0 when using an evaluation offset (see method RsCmwWcdmaMeas.Trigger.MultiEval. delay) .

param offset

numeric Range: 0 slots to 1024 slots

set_os_index(index: int)None[source]
# SCPI: CONFigure:WCDMa:MEASurement<instance>:MEValuation:LIST:OSINdex
driver.configure.multiEval.listPy.set_os_index(index = 1)

No command help available

param index

No help available

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

Enables or disables the list mode.

param enable

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

Cloning the Group

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

Subgroups