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.multiEval.modulation.get_equalizer()

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

return:

enable: OFF | ON

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

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

return:

value: CN | CCB 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.multiEval.modulation.get_mscheme()

Selects the modulation scheme used by the measured signal.

return:

mod_scheme: AUTO | QPSK | Q16 | Q64 | Q256 Auto-detection, QPSK, 16-QAM, 64-QAM, 256-QAM

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

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

param enable:

OFF | ON

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

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

param value:

CN | CCB 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.multiEval.modulation.set_mscheme(mod_scheme = enums.ModScheme.AUTO)

Selects the modulation scheme used by the measured signal.

param mod_scheme:

AUTO | QPSK | Q16 | Q64 | Q256 Auto-detection, QPSK, 16-QAM, 64-QAM, 256-QAM

Cloning the Group

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

Subgroups