Speech

SCPI Commands

CONFigure:CDMA:SIGNaling<Instance>:SCONfig:SPEech:VCODer
CONFigure:CDMA:SIGNaling<Instance>:SCONfig:SPEech:EDELay
class Speech[source]

Speech commands group definition. 6 total commands, 1 Sub-groups, 2 group commands

get_edelay()float[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:SCONfig:SPEech:EDELay
value: float = driver.configure.sconfig.speech.get_edelay()

Defines the time that the R&S CMW waits before it loops back the received data if the ‘Voice Coder’ (method RsCmwCdma2kSig.Configure.Sconfig.Speech.vcoder) is set to Echo mode.

return

echo_delay: Range: 0.02 to 10, Unit: seconds

get_vcoder()RsCmwCdma2kSig.enums.VoiceCoder[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:SCONfig:SPEech:VCODer
value: enums.VoiceCoder = driver.configure.sconfig.speech.get_vcoder()

Configures the CS connection setup for the selected service option.

return

voice_coder: ECHO | CODE ECHO: the setup for the loopback with delay. The R&S CMW sends back all data received on the FCH after the specified ‘Echo Delay’ (method RsCmwCdma2kSig.Configure.Sconfig.Speech.edelay) without invoking the speech codec. CODE: the setup for the bidirectional audio connection from the speech encoder/decoder to the DUT involving the audio measurements application with the codec board.

set_edelay(echo_delay: float)None[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:SCONfig:SPEech:EDELay
driver.configure.sconfig.speech.set_edelay(echo_delay = 1.0)

Defines the time that the R&S CMW waits before it loops back the received data if the ‘Voice Coder’ (method RsCmwCdma2kSig.Configure.Sconfig.Speech.vcoder) is set to Echo mode.

param echo_delay

Range: 0.02 to 10, Unit: seconds

set_vcoder(voice_coder: RsCmwCdma2kSig.enums.VoiceCoder)None[source]
# SCPI: CONFigure:CDMA:SIGNaling<Instance>:SCONfig:SPEech:VCODer
driver.configure.sconfig.speech.set_vcoder(voice_coder = enums.VoiceCoder.CODE)

Configures the CS connection setup for the selected service option.

param voice_coder

ECHO | CODE ECHO: the setup for the loopback with delay. The R&S CMW sends back all data received on the FCH after the specified ‘Echo Delay’ (method RsCmwCdma2kSig.Configure.Sconfig.Speech.edelay) without invoking the speech codec. CODE: the setup for the bidirectional audio connection from the speech encoder/decoder to the DUT involving the audio measurements application with the codec board.

Cloning the Group

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

Subgroups