AuSave

SCPI Commands :

MMEMory:AUSave:ENABle
MMEMory:AUSave:INTerval
Commands in total: 2
Subgroups: 0
Direct child commands: 2
get_enable() bool[source]
# MMEMory:AUSave:ENABle
value: bool = driver.massMemory.auSave.get_enable()

Enables the automatic saving of the waveform. You can set the autosave interval with method RsMxo.massMemory.auSave.interval() .

Returns:

enable_autosave: OFF | ON

get_interval() int[source]
# MMEMory:AUSave:INTerval
value: int = driver.massMemory.auSave.get_interval()

Defines the time interval for the automatic saving of the waveform, if method RsMxo.massMemory.auSave.enable() is set to ON.

Returns:

autosave_interval: 1 to 360000

set_enable(enable_autosave: bool) None[source]
# MMEMory:AUSave:ENABle
driver.massMemory.auSave.set_enable(enable_autosave = False)

Enables the automatic saving of the waveform. You can set the autosave interval with method RsMxo.massMemory.auSave.interval() .

Parameters:

enable_autosave – OFF | ON

set_interval(autosave_interval: int) None[source]
# MMEMory:AUSave:INTerval
driver.massMemory.auSave.set_interval(autosave_interval = 1)

Defines the time interval for the automatic saving of the waveform, if method RsMxo.massMemory.auSave.enable() is set to ON.

Parameters:

autosave_interval – 1 to 360000