Restart

SCPI Commands

CONFigure:EVDO:SIGNaling<Instance>:FADing:FSIMulator:RESTart:MODE
CONFigure:EVDO:SIGNaling<Instance>:FADing:FSIMulator:RESTart
class Restart[source]

Restart commands group definition. 2 total commands, 0 Sub-groups, 2 group commands

get_mode()RsCmwEvdoSig.enums.AutoManualMode[source]
# SCPI: CONFigure:EVDO:SIGNaling<instance>:FADing:FSIMulator:RESTart:MODE
value: enums.AutoManualMode = driver.configure.fading.fsimulator.restart.get_mode()

Sets the restart mode of the fading simulator.

return

restart_mode: AUTO | MANual AUTO: fading automatically starts with the DL signal MANual: fading is started and restarted manually (see method RsCmwEvdoSig.Configure.Fading.Fsimulator.Restart.set)

set()None[source]
# SCPI: CONFigure:EVDO:SIGNaling<instance>:FADing:FSIMulator:RESTart
driver.configure.fading.fsimulator.restart.set()

Restarts the fading process in MANual mode (see method RsCmwEvdoSig.Configure.Fading.Fsimulator.Restart.mode) .

set_mode(restart_mode: RsCmwEvdoSig.enums.AutoManualMode)None[source]
# SCPI: CONFigure:EVDO:SIGNaling<instance>:FADing:FSIMulator:RESTart:MODE
driver.configure.fading.fsimulator.restart.set_mode(restart_mode = enums.AutoManualMode.AUTO)

Sets the restart mode of the fading simulator.

param restart_mode

AUTO | MANual AUTO: fading automatically starts with the DL signal MANual: fading is started and restarted manually (see method RsCmwEvdoSig.Configure.Fading.Fsimulator.Restart.set)

set_with_opc()None[source]
# SCPI: CONFigure:EVDO:SIGNaling<instance>:FADing:FSIMulator:RESTart
driver.configure.fading.fsimulator.restart.set_with_opc()

Restarts the fading process in MANual mode (see method RsCmwEvdoSig.Configure.Fading.Fsimulator.Restart.mode) .

Same as set, but waits for the operation to complete before continuing further. Use the RsCmwEvdoSig.utilities.opc_timeout_set() to set the timeout value.