Source code for RsSmbv.Implementations.System.Communicate.Gpib

from .....Internal.Core import Core
from .....Internal.CommandsGroup import CommandsGroup
from .....Internal import Conversions
from .....Internal.Utilities import trim_str_response
from ..... import enums


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class GpibCls: """Gpib commands group definition. 3 total commands, 1 Subgroups, 2 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("gpib", core, parent) @property def self(self): """self commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_self'): from .Self import SelfCls self._self = SelfCls(self._core, self._cmd_group) return self._self # noinspection PyTypeChecker
[docs] def get_lterminator(self) -> enums.IecTermMode: """SCPI: SYSTem:COMMunicate:GPIB:LTERminator \n Snippet: value: enums.IecTermMode = driver.system.communicate.gpib.get_lterminator() \n Sets the terminator recognition for remote control via GPIB interface. \n :return: lterminator: STANdard| EOI EOI Recognizes an LF (Line Feed) as the terminator only when it is sent with the line message EOI (End of Line) . This setting is recommended particularly for binary block transmissions, as binary blocks may coincidentally contain a characater with value LF (Line Feed) , although it is not determined as a terminator. STANdard Recognizes an LF (Line Feed) as the terminator regardless of whether it is sent with or without EOI. """ response = self._core.io.query_str('SYSTem:COMMunicate:GPIB:LTERminator?') return Conversions.str_to_scalar_enum(response, enums.IecTermMode)
[docs] def set_lterminator(self, lterminator: enums.IecTermMode) -> None: """SCPI: SYSTem:COMMunicate:GPIB:LTERminator \n Snippet: driver.system.communicate.gpib.set_lterminator(lterminator = enums.IecTermMode.EOI) \n Sets the terminator recognition for remote control via GPIB interface. \n :param lterminator: STANdard| EOI EOI Recognizes an LF (Line Feed) as the terminator only when it is sent with the line message EOI (End of Line) . This setting is recommended particularly for binary block transmissions, as binary blocks may coincidentally contain a characater with value LF (Line Feed) , although it is not determined as a terminator. STANdard Recognizes an LF (Line Feed) as the terminator regardless of whether it is sent with or without EOI. """ param = Conversions.enum_scalar_to_str(lterminator, enums.IecTermMode) self._core.io.write(f'SYSTem:COMMunicate:GPIB:LTERminator {param}')
[docs] def get_resource(self) -> str: """SCPI: SYSTem:COMMunicate:GPIB:RESource \n Snippet: value: str = driver.system.communicate.gpib.get_resource() \n Queries the visa resource string for remote control via the GPIB interface. To change the GPIB address, use the command method RsSmbv.System.Communicate.Gpib.Self.address. \n :return: resource: string """ response = self._core.io.query_str('SYSTem:COMMunicate:GPIB:RESource?') return trim_str_response(response)
def clone(self) -> 'GpibCls': """Clones the group by creating new object from it and its whole existing subgroups Also copies all the existing default Repeated Capabilities setting, which you can change independently without affecting the original group""" new_group = GpibCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group