MassMemory
SCPI Commands :
MMEMory:CLEar:ALL
MMEMory:COPY
MMEMory:MOVE
- class MassMemoryCls[source]
MassMemory commands group definition. 75 total commands, 14 Subgroups, 3 group commands
- clear_all(opc_timeout_ms: int = - 1) None [source]
# SCPI: MMEMory:CLEar:ALL driver.massMemory.clear_all()
This command deletes all instrument configuration files in the current directory. You can select the directory with method RsFsw.MassMemory.CurrentDirectory.set.
- param opc_timeout_ms
Maximum time to wait in milliseconds, valid only for this call.
- copy(source_file: str, target_file: str) None [source]
# SCPI: MMEMory:COPY driver.massMemory.copy(source_file = 'abc', target_file = 'abc')
This command copies one or more files to another directory.
- param source_file
No help available
- param target_file
No help available
- move(source_file: str, target_file: str) None [source]
# SCPI: MMEMory:MOVE driver.massMemory.move(source_file = 'abc', target_file = 'abc')
This command moves a file to another directory. The command also renames the file if you define a new name in the target directory. If you do not include a path for <NewFileName>, the command just renames the file.
- param source_file
No help available
- param target_file
No help available
Cloning the Group
# Create a clone of the original group, that exists independently
group2 = driver.massMemory.clone()
Subgroups