Save

SCPI Commands :

SESSion:SAVE[:EXECute]
SESSion:SAVE:CHANnel
SESSion:SAVE:ABORt
SESSion:SAVE:REFerence
Commands in total: 4
Subgroups: 0
Direct child commands: 4
abort() None[source]
# SESSion:SAVE:ABORt
driver.sessions.save.abort()

Stops the saving process of a session file.

abort_and_wait(opc_timeout_ms: int = -1) None[source]
# SESSion:SAVE:ABORt
driver.sessions.save.abort_and_wait()

Stops the saving process of a session file.

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

Parameters:

opc_timeout_ms – Maximum time to wait in milliseconds, valid only for this call.

get_channel() bool[source]
# SESSion:SAVE:CHANnel
value: bool = driver.sessions.save.get_channel()

Includes the channel waveform data in the session file.

Returns:

ch_waveforms: OFF | ON

get_reference() bool[source]
# SESSion:SAVE:REFerence
value: bool = driver.sessions.save.get_reference()

Includes the reference waveform data in the session file.

Returns:

ref_wfms: OFF | ON

set_channel(ch_waveforms: bool) None[source]
# SESSion:SAVE:CHANnel
driver.sessions.save.set_channel(ch_waveforms = False)

Includes the channel waveform data in the session file.

Parameters:

ch_waveforms – OFF | ON

set_execute(file_path: str) None[source]
# SESSion:SAVE[:EXECute]
driver.sessions.save.set_execute(file_path = 'abc')

Saves the current session with selected content to the specified file.

Parameters:

file_path – String parameter specifying path and filename of the target file.

set_reference(ref_wfms: bool) None[source]
# SESSion:SAVE:REFerence
driver.sessions.save.set_reference(ref_wfms = False)

Includes the reference waveform data in the session file.

Parameters:

ref_wfms – OFF | ON