IpAddress

SCPI Commands :

[SOURce<HW>]:BB:NR5G:HFB:ETHernet:IPADdress:MODE
[SOURce<HW>]:BB:NR5G:HFB:ETHernet:IPADdress:PORT
[SOURce<HW>]:BB:NR5G:HFB:ETHernet:IPADdress:PROTocol
[SOURce<HW>]:BB:NR5G:HFB:ETHernet:IPADdress
class IpAddressCls[source]

IpAddress commands group definition. 5 total commands, 1 Subgroups, 4 group commands

get_mode() EthernetMode[source]
# SCPI: [SOURce<HW>]:BB:NR5G:HFB:ETHernet:IPADdress:MODE
value: enums.EthernetMode = driver.source.bb.nr5G.hfb.ethernet.ipAddress.get_mode()
Shows the type of IP address that real-time feedback uses.

INTRO_CMD_HELP: Prerequisites for this command

  • Select Ethernet feedback mode ([:SOURce<hw>]:BB:NR5G:HFB:MODE) .

return:

eth_mode: STAT Static IP address.

get_port() int[source]
# SCPI: [SOURce<HW>]:BB:NR5G:HFB:ETHernet:IPADdress:PORT
value: int = driver.source.bb.nr5G.hfb.ethernet.ipAddress.get_port()
Defines the network port that real-time feedback uses.

INTRO_CMD_HELP: Prerequisites for this command

  • Select Ethernet feedback mode ([:SOURce<hw>]:BB:NR5G:HFB:MODE) .

return:

eth_port: No help available

get_protocol() NetProtocol[source]
# SCPI: [SOURce<HW>]:BB:NR5G:HFB:ETHernet:IPADdress:PROTocol
value: enums.NetProtocol = driver.source.bb.nr5G.hfb.ethernet.ipAddress.get_protocol()
Shows the type of IP protocol that real-time feedback uses.

INTRO_CMD_HELP: Prerequisites for this command

  • Select Ethernet feedback mode ([:SOURce<hw>]:BB:NR5G:HFB:MODE) .

return:

eth_protocol: TCP TCP protocol.

get_value() bytes[source]
# SCPI: [SOURce<HW>]:BB:NR5G:HFB:ETHernet:IPADdress
value: bytes = driver.source.bb.nr5G.hfb.ethernet.ipAddress.get_value()
Defines the IP address of the baseband board that real-time feedback uses.

INTRO_CMD_HELP: Prerequisites for this command

  • Select Ethernet feedback mode ([:SOURce<hw>]:BB:NR5G:HFB:MODE) .

return:

nr_5_gethernet_ip_address: No help available

set_mode(eth_mode: EthernetMode) None[source]
# SCPI: [SOURce<HW>]:BB:NR5G:HFB:ETHernet:IPADdress:MODE
driver.source.bb.nr5G.hfb.ethernet.ipAddress.set_mode(eth_mode = enums.EthernetMode.AUTO)
Shows the type of IP address that real-time feedback uses.

INTRO_CMD_HELP: Prerequisites for this command

  • Select Ethernet feedback mode ([:SOURce<hw>]:BB:NR5G:HFB:MODE) .

param eth_mode:

STAT Static IP address.

set_protocol(eth_protocol: NetProtocol) None[source]
# SCPI: [SOURce<HW>]:BB:NR5G:HFB:ETHernet:IPADdress:PROTocol
driver.source.bb.nr5G.hfb.ethernet.ipAddress.set_protocol(eth_protocol = enums.NetProtocol.TCP)
Shows the type of IP protocol that real-time feedback uses.

INTRO_CMD_HELP: Prerequisites for this command

  • Select Ethernet feedback mode ([:SOURce<hw>]:BB:NR5G:HFB:MODE) .

param eth_protocol:

TCP TCP protocol.

set_value(nr_5_gethernet_ip_address: bytes) None[source]
# SCPI: [SOURce<HW>]:BB:NR5G:HFB:ETHernet:IPADdress
driver.source.bb.nr5G.hfb.ethernet.ipAddress.set_value(nr_5_gethernet_ip_address = b'ABCDEFGH')
Defines the IP address of the baseband board that real-time feedback uses.

INTRO_CMD_HELP: Prerequisites for this command

  • Select Ethernet feedback mode ([:SOURce<hw>]:BB:NR5G:HFB:MODE) .

param nr_5_gethernet_ip_address:

String that contains the IP address of the baseband board.

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.source.bb.nr5G.hfb.ethernet.ipAddress.clone()

Subgroups