Setting

SCPI Commands :

[SOURce<HW>]:BB:TDSCdma:SETTing:CATalog
[SOURce<HW>]:BB:TDSCdma:SETTing:LOAD
[SOURce<HW>]:BB:TDSCdma:SETTing:STORe
Commands in total: 5
Subgroups: 1
Direct child commands: 3
get_catalog() List[str][source]
# [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 SMWuser manual.

Returns:

catalog: filename1,filename2,… Returns a string of filenames separated by commas.

load(filename: str) None[source]
# [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.

Parameters:

filename – ‘filename’ Filename or complete file path; file extension can be omitted

set_store(filename: str) None[source]
# [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.

Parameters:

filename – string Filename or complete file path

Cloning the Group

# Create a copy of the original group, that exists independently
setting_copy = driver.source.bb.tdscdma.setting.clone()

Subgroups