Voip

SCPI Command:

CONFigure:AFRF:MEASurement<Instance>:VOIP:GCOupling
CONFigure:AFRF:MEASurement<Instance>:VOIP:ENABle
CONFigure:AFRF:MEASurement<Instance>:VOIP:PCODec
CONFigure:AFRF:MEASurement<Instance>:VOIP:FID
class VoipCls[source]

Voip commands group definition. 42 total commands, 7 Subgroups, 4 group commands

get_enable() bool[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:VOIP:ENABle
value: bool = driver.configure.afRf.measurement.voip.get_enable()

Enables or disables the audio signal output of the VoIP input path.

return:

enable: OFF | ON

get_fid() float[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:VOIP:FID
value: float = driver.configure.afRf.measurement.voip.get_fid()
Specifies the frequency ID (FID) configured at the DUT.

INTRO_CMD_HELP: Allowed values are, with n = 0 to 39995:

  • 0.100 + n * 0.025

  • 0.105 + n * 0.025

  • 0.110 + n * 0.025

  • 0.115 + n * 0.025

Resulting in: 0.100, 0.105, 0.110, 0.115, 0.125, 0.130, 0.135, 0.140, …, 999.975, 999.980, 999.985, 999.990

return:

frequency_id: Frequency ID Not allowed values are rounded to the closest allowed value. Range: 0.1 to 999.99

get_gcoupling() GeneratorCouplingVoIp[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:VOIP:GCOupling
value: enums.GeneratorCouplingVoIp = driver.configure.afRf.measurement.voip.get_gcoupling()

Couples the audio output of the VoIP input path to an internal signal generator.

return:

coupling: OFF | GEN3 | GEN4 OFF No coupling GEN3 Coupled to audio generator 3 GEN4 Coupled to audio generator 4

get_pcodec() VoIpCodec[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:VOIP:PCODec
value: enums.VoIpCodec = driver.configure.afRf.measurement.voip.get_pcodec()

Queries the type of the pulse code modulation (PCM) codec.

return:

pcodec: ALAW | ULAW A-law codec or u-law codec

set_enable(enable: bool) None[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:VOIP:ENABle
driver.configure.afRf.measurement.voip.set_enable(enable = False)

Enables or disables the audio signal output of the VoIP input path.

param enable:

OFF | ON

set_fid(frequency_id: float) None[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:VOIP:FID
driver.configure.afRf.measurement.voip.set_fid(frequency_id = 1.0)
Specifies the frequency ID (FID) configured at the DUT.

INTRO_CMD_HELP: Allowed values are, with n = 0 to 39995:

  • 0.100 + n * 0.025

  • 0.105 + n * 0.025

  • 0.110 + n * 0.025

  • 0.115 + n * 0.025

Resulting in: 0.100, 0.105, 0.110, 0.115, 0.125, 0.130, 0.135, 0.140, …, 999.975, 999.980, 999.985, 999.990

param frequency_id:

Frequency ID Not allowed values are rounded to the closest allowed value. Range: 0.1 to 999.99

set_gcoupling(coupling: GeneratorCouplingVoIp) None[source]
# SCPI: CONFigure:AFRF:MEASurement<Instance>:VOIP:GCOupling
driver.configure.afRf.measurement.voip.set_gcoupling(coupling = enums.GeneratorCouplingVoIp.GEN3)

Couples the audio output of the VoIP input path to an internal signal generator.

param coupling:

OFF | GEN3 | GEN4 OFF No coupling GEN3 Coupled to audio generator 3 GEN4 Coupled to audio generator 4

Cloning the Group

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

Subgroups