Control

SCPI Commands

CONFigure:DATA:CONTrol:MTU
class Control[source]

Control commands group definition. 271 total commands, 11 Sub-groups, 1 group commands

get_mtu()int[source]
# SCPI: CONFigure:DATA:CONTrol:MTU
value: int = driver.configure.data.control.get_mtu()

Specifies the MTU, that is the maximum IP packet size that can be transmitted without fragmentation.

return

max_trans_unit: Range: 552 bytes to 4096 bytes, Unit: bytes

set_mtu(max_trans_unit: int)None[source]
# SCPI: CONFigure:DATA:CONTrol:MTU
driver.configure.data.control.set_mtu(max_trans_unit = 1)

Specifies the MTU, that is the maximum IP packet size that can be transmitted without fragmentation.

param max_trans_unit

Range: 552 bytes to 4096 bytes, Unit: bytes

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.configure.data.control.clone()

Subgroups