from ......Internal.Core import Core
from ......Internal.CommandsGroup import CommandsGroup
from ......Internal import Conversions
from ...... import enums
# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class CpathCls:
"""Cpath commands group definition. 1 total commands, 0 Subgroups, 1 group commands"""
def __init__(self, core: Core, parent):
self._core = core
self._cmd_group = CommandsGroup("cpath", core, parent)
[docs] def set(self, path_to_calibrate: enums.CalibrationPath) -> None:
"""SCPI: DIAGnostic:SERVice:INPut:RF:CPATh \n
Snippet: driver.diagnostic.service.inputPy.rf.cpath.set(path_to_calibrate = enums.CalibrationPath.FULL) \n
No command help available \n
:param path_to_calibrate: No help available
"""
param = Conversions.enum_scalar_to_str(path_to_calibrate, enums.CalibrationPath)
self._core.io.write(f'DIAGnostic:SERVice:INPut:RF:CPATh {param}')
# noinspection PyTypeChecker
[docs] def get(self) -> enums.CalibrationPath:
"""SCPI: DIAGnostic:SERVice:INPut:RF:CPATh \n
Snippet: value: enums.CalibrationPath = driver.diagnostic.service.inputPy.rf.cpath.get() \n
No command help available \n
:return: path_to_calibrate: No help available"""
response = self._core.io.query_str(f'DIAGnostic:SERVice:INPut:RF:CPATh?')
return Conversions.str_to_scalar_enum(response, enums.CalibrationPath)