Generator
SCPI Commands :
MMEMory:GENerator:SAV
MMEMory:GENerator:RCL
- Commands in total: 2Subgroups: 0Direct child commands: 2
- get_recall() str[source]
# MMEMory:GENerator:RCL value: str = driver.massMemory.generator.get_recall()
Restores the waveform generator settings from the specified file.
- Returns:
file_path: String parameter specifying the path and filename of the settings file.
- get_save() str[source]
# MMEMory:GENerator:SAV value: str = driver.massMemory.generator.get_save()
Stores the current waveform generator settings to the specified file.
- Returns:
file_path: String parameter specifying path and filename of the settings file.
- set_recall(file_path: str) None[source]
# MMEMory:GENerator:RCL driver.massMemory.generator.set_recall(file_path = 'abc')
Restores the waveform generator settings from the specified file.
- Parameters:
file_path – String parameter specifying the path and filename of the settings file.
- set_save(file_path: str) None[source]
# MMEMory:GENerator:SAV driver.massMemory.generator.set_save(file_path = 'abc')
Stores the current waveform generator settings to the specified file.
- Parameters:
file_path – String parameter specifying path and filename of the settings file.