Configure

SCPI Commands

CONFigure:EVDO:SIGNaling<Instance>:DISPlay
CONFigure:EVDO:SIGNaling<Instance>:ETOE
class Configure[source]

Configure commands group definition. 220 total commands, 20 Sub-groups, 2 group commands

get_display()RsCmwEvdoSig.enums.DisplayTab[source]
# SCPI: CONFigure:EVDO:SIGNaling<Instance>:DISPlay
value: enums.DisplayTab = driver.configure.get_display()

Selects the view to be shown when the display is switched on during remote control.

return

tab: PER | THRoughput | DATA | OVERview ‘RX Meas’: ‘PER’, ‘Throughput’, ‘Data’; 1xEV-DO signaling: overview

get_etoe()bool[source]
# SCPI: CONFigure:EVDO:SIGNaling<instance>:ETOE
value: bool = driver.configure.get_etoe()

Enables the setup of a connection between the signaling unit and the data application unit (DAU) , required for IP-based data tests involving the DAU.

return

end_to_end_enable: OFF | ON

set_display(tab: RsCmwEvdoSig.enums.DisplayTab)None[source]
# SCPI: CONFigure:EVDO:SIGNaling<Instance>:DISPlay
driver.configure.set_display(tab = enums.DisplayTab.CTRLchper)

Selects the view to be shown when the display is switched on during remote control.

param tab

PER | THRoughput | DATA | OVERview ‘RX Meas’: ‘PER’, ‘Throughput’, ‘Data’; 1xEV-DO signaling: overview

set_etoe(end_to_end_enable: bool)None[source]
# SCPI: CONFigure:EVDO:SIGNaling<instance>:ETOE
driver.configure.set_etoe(end_to_end_enable = False)

Enables the setup of a connection between the signaling unit and the data application unit (DAU) , required for IP-based data tests involving the DAU.

param end_to_end_enable

OFF | ON

Cloning the Group

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

Subgroups