Application

SCPI Commands

CONFigure:EVDO:SIGNaling<Instance>:APPLication:DSIGnaling
CONFigure:EVDO:SIGNaling<Instance>:APPLication:MODE
CONFigure:EVDO:SIGNaling<Instance>:APPLication
class Application[source]

Application commands group definition. 3 total commands, 0 Sub-groups, 3 group commands

get_dsignaling()int[source]
# SCPI: CONFigure:EVDO:SIGNaling<instance>:APPLication:DSIGnaling
value: int = driver.configure.application.get_dsignaling()

Queries the stream and the state of the default signaling application. The response is fixed: The default signaling application is always enabled and assigned to stream 0.

return

stream: Range: 0

get_mode()RsCmwEvdoSig.enums.ApplicationMode[source]
# SCPI: CONFigure:EVDO:SIGNaling<instance>:APPLication:MODE
value: enums.ApplicationMode = driver.configure.application.get_mode()

Selects the application to be instantiated.

return

mode: FWD | REV | FAR | PACKet FWD: forward test application REV: reverse test application FAR: forward and reverse test application PACKet: packet application

get_value()int[source]
# SCPI: CONFigure:EVDO:SIGNaling<instance>:APPLication
value: int = driver.configure.application.get_value()

Queries the stream occupied by the configured session application (see method RsCmwEvdoSig.Configure.Application.mode) . Setting this value has no effect as the selected stream is a result of the session negotiation.

return

stream: Range: 1 to 3

set_mode(mode: RsCmwEvdoSig.enums.ApplicationMode)None[source]
# SCPI: CONFigure:EVDO:SIGNaling<instance>:APPLication:MODE
driver.configure.application.set_mode(mode = enums.ApplicationMode.FAR)

Selects the application to be instantiated.

param mode

FWD | REV | FAR | PACKet FWD: forward test application REV: reverse test application FAR: forward and reverse test application PACKet: packet application

set_value(stream: int)None[source]
# SCPI: CONFigure:EVDO:SIGNaling<instance>:APPLication
driver.configure.application.set_value(stream = 1)

Queries the stream occupied by the configured session application (see method RsCmwEvdoSig.Configure.Application.mode) . Setting this value has no effect as the selected stream is a result of the session negotiation.

param stream

Range: 1 to 3