Generator
SCPI Commands :
GENerator:SAV
GENerator:RCL
- Commands in total: 3Subgroups: 1Direct child commands: 2
- get_recall() str[source]
# GENerator:RCL value: str = driver.generator.get_recall()
Restores the waveform generator from the specified file.
- Returns:
file_path: String parameter specifying the path and filename of the source file.
- get_save() str[source]
# GENerator:SAV value: str = driver.generator.get_save()
Stores the current waveform generator settings to the specified file.
- Returns:
file_path: String parameter specifying path and filename of the target file.
- set_recall(file_path: str) None[source]
# GENerator:RCL driver.generator.set_recall(file_path = 'abc')
Restores the waveform generator from the specified file.
- Parameters:
file_path – String parameter specifying the path and filename of the source file.
- set_save(file_path: str) None[source]
# GENerator:SAV driver.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 target file.
Cloning the Group
# Create a copy of the original group, that exists independently
generator_copy = driver.generator.clone()
Subgroups