Configure

SCPI Commands

CONFigure:WCDMa:SIGNaling<Instance>:ETOE
CONFigure:WCDMa:SIGNaling<Instance>:ESCode
class Configure[source]

Configure commands group definition. 464 total commands, 24 Sub-groups, 2 group commands

get_es_code()bool[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:ESCode
value: bool = driver.configure.get_es_code()

Enables audio tests involving the ‘audio measurements’ application in remote operation only. It can only be set in the signal OFF state.

return

enable: OFF | ON

get_etoe()bool[source]
# SCPI: CONFigure:WCDMa: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) . DAU is required for IP-based data tests.

return

end_to_end_enable: OFF | ON

set_es_code(enable: bool)None[source]
# SCPI: CONFigure:WCDMa:SIGNaling<instance>:ESCode
driver.configure.set_es_code(enable = False)

Enables audio tests involving the ‘audio measurements’ application in remote operation only. It can only be set in the signal OFF state.

param enable

OFF | ON

set_etoe(end_to_end_enable: bool)None[source]
# SCPI: CONFigure:WCDMa: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) . DAU is required for IP-based data tests.

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