Modulation

SCPI Commands :

CONFigure:LTE:MEASurement<Instance>:MEValuation:MODulation:EQUalizer
CONFigure:LTE:MEASurement<Instance>:MEValuation:MODulation:MSCHeme
CONFigure:LTE:MEASurement<Instance>:MEValuation:MODulation:LLOCation
class ModulationCls[source]

Modulation commands group definition. 9 total commands, 3 Subgroups, 3 group commands

get_equalizer() bool[source]
# SCPI: CONFigure:LTE:MEASurement<Instance>:MEValuation:MODulation:EQUalizer
value: bool = driver.configure.lteMeas.multiEval.modulation.get_equalizer()

Enables or disables the post-FFT equalization step for the measurement of modulation results.

return:

enable: No help available

get_llocation() LocalOscLocation[source]
# SCPI: CONFigure:LTE:MEASurement<Instance>:MEValuation:MODulation:LLOCation
value: enums.LocalOscLocation = driver.configure.lteMeas.multiEval.modulation.get_llocation()

Specifies the UE transmitter architecture (local oscillator location) used for eMTC.

return:

value: CN: Center of narrowband/wideband CCB: Center of channel bandwidth

get_mscheme() ModScheme[source]
# SCPI: CONFigure:LTE:MEASurement<Instance>:MEValuation:MODulation:MSCHeme
value: enums.ModScheme = driver.configure.lteMeas.multiEval.modulation.get_mscheme()

Selects the modulation scheme used by the measured signal.

return:

mod_scheme: Auto-detection, QPSK, 16QAM, 64QAM, 256QAM

set_equalizer(enable: bool) None[source]
# SCPI: CONFigure:LTE:MEASurement<Instance>:MEValuation:MODulation:EQUalizer
driver.configure.lteMeas.multiEval.modulation.set_equalizer(enable = False)

Enables or disables the post-FFT equalization step for the measurement of modulation results.

param enable:

No help available

set_llocation(value: LocalOscLocation) None[source]
# SCPI: CONFigure:LTE:MEASurement<Instance>:MEValuation:MODulation:LLOCation
driver.configure.lteMeas.multiEval.modulation.set_llocation(value = enums.LocalOscLocation.CCB)

Specifies the UE transmitter architecture (local oscillator location) used for eMTC.

param value:

CN: Center of narrowband/wideband CCB: Center of channel bandwidth

set_mscheme(mod_scheme: ModScheme) None[source]
# SCPI: CONFigure:LTE:MEASurement<Instance>:MEValuation:MODulation:MSCHeme
driver.configure.lteMeas.multiEval.modulation.set_mscheme(mod_scheme = enums.ModScheme.AUTO)

Selects the modulation scheme used by the measured signal.

param mod_scheme:

Auto-detection, QPSK, 16QAM, 64QAM, 256QAM

Cloning the Group

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

Subgroups