Source code for RsSmw.Implementations.Source.Bb.Nr5G.Hfb.Ethernet.IpAddress

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


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs] class IpAddressCls: """IpAddress commands group definition. 5 total commands, 1 Subgroups, 4 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("ipAddress", core, parent) @property def subnet(self): """subnet commands group. 0 Sub-classes, 1 commands.""" if not hasattr(self, '_subnet'): from .Subnet import SubnetCls self._subnet = SubnetCls(self._core, self._cmd_group) return self._subnet # noinspection PyTypeChecker
[docs] def get_mode(self) -> enums.EthernetMode: """SCPI: [SOURce<HW>]:BB:NR5G:HFB:ETHernet:IPADdress:MODE \n Snippet: value: enums.EthernetMode = driver.source.bb.nr5G.hfb.ethernet.ipAddress.get_mode() \n Shows the type of IP address that real-time feedback uses. INTRO_CMD_HELP: Prerequisites for this command \n - Select Ethernet feedback mode ([:SOURce<hw>]:BB:NR5G:HFB:MODE) . \n :return: eth_mode: STAT Static IP address. """ response = self._core.io.query_str('SOURce<HwInstance>:BB:NR5G:HFB:ETHernet:IPADdress:MODE?') return Conversions.str_to_scalar_enum(response, enums.EthernetMode)
[docs] def set_mode(self, eth_mode: enums.EthernetMode) -> None: """SCPI: [SOURce<HW>]:BB:NR5G:HFB:ETHernet:IPADdress:MODE \n Snippet: driver.source.bb.nr5G.hfb.ethernet.ipAddress.set_mode(eth_mode = enums.EthernetMode.AUTO) \n Shows the type of IP address that real-time feedback uses. INTRO_CMD_HELP: Prerequisites for this command \n - Select Ethernet feedback mode ([:SOURce<hw>]:BB:NR5G:HFB:MODE) . \n :param eth_mode: STAT Static IP address. """ param = Conversions.enum_scalar_to_str(eth_mode, enums.EthernetMode) self._core.io.write(f'SOURce<HwInstance>:BB:NR5G:HFB:ETHernet:IPADdress:MODE {param}')
[docs] def get_port(self) -> int: """SCPI: [SOURce<HW>]:BB:NR5G:HFB:ETHernet:IPADdress:PORT \n Snippet: value: int = driver.source.bb.nr5G.hfb.ethernet.ipAddress.get_port() \n Defines the network port that real-time feedback uses. INTRO_CMD_HELP: Prerequisites for this command \n - Select Ethernet feedback mode ([:SOURce<hw>]:BB:NR5G:HFB:MODE) . \n :return: eth_port: No help available """ response = self._core.io.query_str('SOURce<HwInstance>:BB:NR5G:HFB:ETHernet:IPADdress:PORT?') return Conversions.str_to_int(response)
# noinspection PyTypeChecker
[docs] def get_protocol(self) -> enums.NetProtocol: """SCPI: [SOURce<HW>]:BB:NR5G:HFB:ETHernet:IPADdress:PROTocol \n Snippet: value: enums.NetProtocol = driver.source.bb.nr5G.hfb.ethernet.ipAddress.get_protocol() \n Shows the type of IP protocol that real-time feedback uses. INTRO_CMD_HELP: Prerequisites for this command \n - Select Ethernet feedback mode ([:SOURce<hw>]:BB:NR5G:HFB:MODE) . \n :return: eth_protocol: TCP TCP protocol. """ response = self._core.io.query_str('SOURce<HwInstance>:BB:NR5G:HFB:ETHernet:IPADdress:PROTocol?') return Conversions.str_to_scalar_enum(response, enums.NetProtocol)
[docs] def set_protocol(self, eth_protocol: enums.NetProtocol) -> None: """SCPI: [SOURce<HW>]:BB:NR5G:HFB:ETHernet:IPADdress:PROTocol \n Snippet: driver.source.bb.nr5G.hfb.ethernet.ipAddress.set_protocol(eth_protocol = enums.NetProtocol.TCP) \n Shows the type of IP protocol that real-time feedback uses. INTRO_CMD_HELP: Prerequisites for this command \n - Select Ethernet feedback mode ([:SOURce<hw>]:BB:NR5G:HFB:MODE) . \n :param eth_protocol: TCP TCP protocol. """ param = Conversions.enum_scalar_to_str(eth_protocol, enums.NetProtocol) self._core.io.write(f'SOURce<HwInstance>:BB:NR5G:HFB:ETHernet:IPADdress:PROTocol {param}')
[docs] def get_value(self) -> bytes: """SCPI: [SOURce<HW>]:BB:NR5G:HFB:ETHernet:IPADdress \n Snippet: value: bytes = driver.source.bb.nr5G.hfb.ethernet.ipAddress.get_value() \n Defines the IP address of the baseband board that real-time feedback uses. INTRO_CMD_HELP: Prerequisites for this command \n - Select Ethernet feedback mode ([:SOURce<hw>]:BB:NR5G:HFB:MODE) . \n :return: nr_5_gethernet_ip_address: No help available """ response = self._core.io.query_bin_block('SOURce<HwInstance>:BB:NR5G:HFB:ETHernet:IPADdress?') return response
[docs] def set_value(self, nr_5_gethernet_ip_address: bytes) -> None: """SCPI: [SOURce<HW>]:BB:NR5G:HFB:ETHernet:IPADdress \n Snippet: driver.source.bb.nr5G.hfb.ethernet.ipAddress.set_value(nr_5_gethernet_ip_address = b'ABCDEFGH') \n Defines the IP address of the baseband board that real-time feedback uses. INTRO_CMD_HELP: Prerequisites for this command \n - Select Ethernet feedback mode ([:SOURce<hw>]:BB:NR5G:HFB:MODE) . \n :param nr_5_gethernet_ip_address: String that contains the IP address of the baseband board. """ self._core.io.write_bin_block('SOURce<HwInstance>:BB:NR5G:HFB:ETHernet:IPADdress ', nr_5_gethernet_ip_address)
def clone(self) -> 'IpAddressCls': """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 = IpAddressCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group