Edau

SCPI Commands :

CONFigure:WLAN:SIGNaling<instance>:EDAU:NID
CONFigure:WLAN:SIGNaling<instance>:EDAU:NSEGment
CONFigure:WLAN:SIGNaling<instance>:EDAU:ENABle
class EdauCls[source]

Edau commands group definition. 3 total commands, 0 Subgroups, 3 group commands

get_enable() bool[source]
# SCPI: CONFigure:WLAN:SIGNaling<instance>:EDAU:ENABle
value: bool = driver.configure.edau.get_enable()

Enables usage of an external DAU.

return:

external_dau: OFF | ON

get_nid() int[source]
# SCPI: CONFigure:WLAN:SIGNaling<instance>:EDAU:NID
value: int = driver.configure.edau.get_nid()

Specifies the subnet node ID of the instrument where the external DAU is installed.

return:

node_id: integer Range: 1 to 254

get_nsegment() SegmentNumber[source]
# SCPI: CONFigure:WLAN:SIGNaling<instance>:EDAU:NSEGment
value: enums.SegmentNumber = driver.configure.edau.get_nsegment()

Specifies the network segment of the instrument where the external DAU is installed.

return:

segment_number: A | B | C

set_enable(external_dau: bool) None[source]
# SCPI: CONFigure:WLAN:SIGNaling<instance>:EDAU:ENABle
driver.configure.edau.set_enable(external_dau = False)

Enables usage of an external DAU.

param external_dau:

OFF | ON

set_nid(node_id: int) None[source]
# SCPI: CONFigure:WLAN:SIGNaling<instance>:EDAU:NID
driver.configure.edau.set_nid(node_id = 1)

Specifies the subnet node ID of the instrument where the external DAU is installed.

param node_id:

integer Range: 1 to 254

set_nsegment(segment_number: SegmentNumber) None[source]
# SCPI: CONFigure:WLAN:SIGNaling<instance>:EDAU:NSEGment
driver.configure.edau.set_nsegment(segment_number = enums.SegmentNumber.A)

Specifies the network segment of the instrument where the external DAU is installed.

param segment_number:

A | B | C