Configure

SCPI Commands

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

Configure commands group definition. 242 total commands, 20 Sub-groups, 3 group commands

get_display()RsCmwCdma2kSig.enums.DisplayTab[source]
# SCPI: CONFigure:CDMA: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: FERFch | FERSch0 | RLP | SPEech RX measurement: ‘FER FCH’, ‘FER SCH0’, ‘RLP’, ‘Speech’

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

No command help available

return

espeech_codec: No help available

get_etoe()bool[source]
# SCPI: CONFigure:CDMA: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: RsCmwCdma2kSig.enums.DisplayTab)None[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:DISPlay
driver.configure.set_display(tab = enums.DisplayTab.FERFch)

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

param tab

FERFch | FERSch0 | RLP | SPEech RX measurement: ‘FER FCH’, ‘FER SCH0’, ‘RLP’, ‘Speech’

set_es_code(espeech_codec: bool)None[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:ESCode
driver.configure.set_es_code(espeech_codec = False)

No command help available

param espeech_codec

No help available

set_etoe(end_to_end_enable: bool)None[source]
# SCPI: CONFigure:CDMA: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