from ........Internal.Core import Core
from ........Internal.CommandsGroup import CommandsGroup
from ........Internal import Conversions
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class NstateCls:
"""Nstate commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("nstate", core, parent)
[docs] def set(self, pskn_state: float) -> None:
"""SCPI: [SENSe]:DDEMod:PATTern:PSK:NSTate \n
Snippet: driver.applications.k70Vsa.sense.ddemod.pattern.psk.nstate.set(pskn_state = 1.0) \n
Together with DDEMod:PATT:PSK:FORMat, this command defines the demodulation order for PSK for the pattern (see also
[SENSe:]DDEMod:PATTern:PSK:FORMat) . Depending on the demodulation format and state, the following orders are available:
Table Header: <PSKNSTATe> / FORMat / Order \n
- 2 / any / BPSK
- 8 / NORMal / 8PSK
- 8 / DIFFerential / D8PSK
Is only available if the additional Multi-Modulation Analysis option (FSW-K70M) is installed. \n
:param pskn_state: 2 | 8
"""
param = Conversions.decimal_value_to_str(pskn_state)
self._core.io.write(f'SENSe:DDEMod:PATTern:PSK:NSTate {param}')
[docs] def get(self) -> float:
"""SCPI: [SENSe]:DDEMod:PATTern:PSK:NSTate \n
Snippet: value: float = driver.applications.k70Vsa.sense.ddemod.pattern.psk.nstate.get() \n
Together with DDEMod:PATT:PSK:FORMat, this command defines the demodulation order for PSK for the pattern (see also
[SENSe:]DDEMod:PATTern:PSK:FORMat) . Depending on the demodulation format and state, the following orders are available:
Table Header: <PSKNSTATe> / FORMat / Order \n
- 2 / any / BPSK
- 8 / NORMal / 8PSK
- 8 / DIFFerential / D8PSK
Is only available if the additional Multi-Modulation Analysis option (FSW-K70M) is installed. \n
:return: pskn_state: 2 | 8"""
response = self._core.io.query_str(f'SENSe:DDEMod:PATTern:PSK:NSTate?')
return Conversions.str_to_float(response)