Edau

SCPI Commands :

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

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

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

Enables usage of an external DAU.

return:

enable: OFF | ON

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

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

return:

idn: integer Range: 1 to 254

get_nsegment() NetworkSegment[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CONNection:EDAU:NSEGment
value: enums.NetworkSegment = driver.configure.connection.edau.get_nsegment()

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

return:

network_segment: A | B | C

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

Enables usage of an external DAU.

param enable:

OFF | ON

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

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

param idn:

integer Range: 1 to 254

set_nsegment(network_segment: NetworkSegment) None[source]
# SCPI: CONFigure:LTE:SIGNaling<instance>:CONNection:EDAU:NSEGment
driver.configure.connection.edau.set_nsegment(network_segment = enums.NetworkSegment.A)

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

param network_segment:

A | B | C