Source code for RsFsw.Implementations.Sense.Correction.Fresponse.User.Slist.Ports.To

from ........Internal.Core import Core
from ........Internal.CommandsGroup import CommandsGroup
from ........Internal import Conversions
from ........ import repcap


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class ToCls: """To commands group definition. 1 total commands, 0 Subgroups, 1 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("to", core, parent)
[docs] def set(self, port_to: int, touchStone=repcap.TouchStone.Default) -> None: """SCPI: [SENSe]:CORRection:FRESponse:USER:SLISt<sli>:PORTs:TO \n Snippet: driver.sense.correction.fresponse.user.slist.ports.to.set(port_to = 1, touchStone = repcap.TouchStone.Default) \n SnP files can be defined for a varying number of input and output ports. You must define the ports from the touchstone file whose data is to be applied. \n :param port_to: No help available :param touchStone: optional repeated capability selector. Default value: Ix1 (settable in the interface 'Slist') """ param = Conversions.decimal_value_to_str(port_to) touchStone_cmd_val = self._cmd_group.get_repcap_cmd_value(touchStone, repcap.TouchStone) self._core.io.write(f'SENSe:CORRection:FRESponse:USER:SLISt{touchStone_cmd_val}:PORTs:TO {param}')
[docs] def get(self, touchStone=repcap.TouchStone.Default) -> int: """SCPI: [SENSe]:CORRection:FRESponse:USER:SLISt<sli>:PORTs:TO \n Snippet: value: int = driver.sense.correction.fresponse.user.slist.ports.to.get(touchStone = repcap.TouchStone.Default) \n SnP files can be defined for a varying number of input and output ports. You must define the ports from the touchstone file whose data is to be applied. \n :param touchStone: optional repeated capability selector. Default value: Ix1 (settable in the interface 'Slist') :return: port_to: No help available""" touchStone_cmd_val = self._cmd_group.get_repcap_cmd_value(touchStone, repcap.TouchStone) response = self._core.io.query_str(f'SENSe:CORRection:FRESponse:USER:SLISt{touchStone_cmd_val}:PORTs:TO?') return Conversions.str_to_int(response)