Setting
SCPI Commands :
[SOURce<HW>]:BB:TDSCdma:SETTing:CATalog
[SOURce<HW>]:BB:TDSCdma:SETTing:LOAD
[SOURce<HW>]:BB:TDSCdma:SETTing:STORe
- class SettingCls[source]
Setting commands group definition. 5 total commands, 1 Subgroups, 3 group commands
- get_catalog() List[str] [source]
# SCPI: [SOURce<HW>]:BB:TDSCdma:SETTing:CATalog value: List[str] = driver.source.bb.tdscdma.setting.get_catalog()
Queries the files with settings in the default directory. Listed are files with the file extension *.tdscdma. For general information on file handling in the default and in a specific directory, see section ‘MMEMory Subsystem’ in the R&S SMBVBuser manual.
- return
catalog: filename1,filename2,… Returns a string of filenames separated by commas.
- load(filename: str) None [source]
# SCPI: [SOURce<HW>]:BB:TDSCdma:SETTing:LOAD driver.source.bb.tdscdma.setting.load(filename = 'abc')
Loads the selected file from the default or the specified directory. Loaded are files with extension *.tdscdma.
- param filename
‘filename’ Filename or complete file path; file extension can be omitted
- set_store(filename: str) None [source]
# SCPI: [SOURce<HW>]:BB:TDSCdma:SETTing:STORe driver.source.bb.tdscdma.setting.set_store(filename = 'abc')
Stores the current settings into the selected file; the file extension (*.tdscdma) is assigned automatically.
- param filename
string Filename or complete file path
Cloning the Group
# Create a clone of the original group, that exists independently
group2 = driver.source.bb.tdscdma.setting.clone()
Subgroups