Up

SCPI Commands

READ:EVDO:MEASurement<Instance>:OLTR:SEQuence<Sequence>:TRACe:UP
FETCh:EVDO:MEASurement<Instance>:OLTR:SEQuence<Sequence>:TRACe:UP
class Up[source]

Up commands group definition. 5 total commands, 1 Sub-groups, 2 group commands

fetch(sequence=<Sequence.Default: -1>)List[float][source]
# SCPI: FETCh:EVDO:MEASurement<instance>:OLTR:SEQuence<Sequence>:TRACe:UP
value: List[float] = driver.oltr.sequence.trace.up.fetch(sequence = repcap.Sequence.Default)

Returns the values of the OLTR traces. For each sequence, DOWN/UP commands return the results of the 100 ms interval following the power up/down step.

Use RsCmwEvdoMeas.reliability.last_value to read the updated reliability indicator.

param sequence

optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Sequence’)

return

up_power: No help available

read(sequence=<Sequence.Default: -1>)List[float][source]
# SCPI: READ:EVDO:MEASurement<instance>:OLTR:SEQuence<Sequence>:TRACe:UP
value: List[float] = driver.oltr.sequence.trace.up.read(sequence = repcap.Sequence.Default)

Returns the values of the OLTR traces. For each sequence, DOWN/UP commands return the results of the 100 ms interval following the power up/down step.

Use RsCmwEvdoMeas.reliability.last_value to read the updated reliability indicator.

param sequence

optional repeated capability selector. Default value: Nr1 (settable in the interface ‘Sequence’)

return

up_power: No help available

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.oltr.sequence.trace.up.clone()

Subgroups