Network
SCPI Commands :
SYSTem:COMMunicate:RT:NETWork:MACaddress
SYSTem:COMMunicate:RT:NETWork:STATus
- class NetworkCls[source]
Network commands group definition. 8 total commands, 3 Subgroups, 2 group commands
- get_mac_address() str [source]
# SCPI: SYSTem:COMMunicate:RT:NETWork:MACaddress value: str = driver.system.communicate.rt.network.get_mac_address()
Queries the MAC address of the instrument connected to the R&S AREG800A via the realtime control interface.
- return:
zynq_mac_address: No help available
- get_status() bool [source]
# SCPI: SYSTem:COMMunicate:RT:NETWork:STATus value: bool = driver.system.communicate.rt.network.get_status()
Queries the network configuration state.
- return:
zynq_net_status: No help available
- set_mac_address(zynq_mac_address: str) None [source]
# SCPI: SYSTem:COMMunicate:RT:NETWork:MACaddress driver.system.communicate.rt.network.set_mac_address(zynq_mac_address = 'abc')
Queries the MAC address of the instrument connected to the R&S AREG800A via the realtime control interface.
- param zynq_mac_address:
No help available
- set_status(zynq_net_status: bool) None [source]
# SCPI: SYSTem:COMMunicate:RT:NETWork:STATus driver.system.communicate.rt.network.set_status(zynq_net_status = False)
Queries the network configuration state.
- param zynq_net_status:
No help available
Cloning the Group
# Create a clone of the original group, that exists independently
group2 = driver.system.communicate.rt.network.clone()
Subgroups