Setting
SCPI Commands :
[SOURce<HW>]:BB:BTOoth:SETTing:CATalog
[SOURce<HW>]:BB:BTOoth:SETTing:DELete
[SOURce<HW>]:BB:BTOoth:SETTing:LOAD
- Commands in total: 5Subgroups: 1Direct child commands: 3
- get_catalog() List[str][source]
# [SOURce<HW>]:BB:BTOoth:SETTing:CATalog value: List[str] = driver.source.bb.btooth.setting.get_catalog()
Queries the files with settings in the default directory. Listed are files with the file extension bto. Refer to ‘Accessing Files in the Default or Specified Directory’ for general information on file handling in the default and in a specific directory.
- Returns:
catalog: string Returns a string of file names separated by commas.
- get_delete() str[source]
# [SOURce<HW>]:BB:BTOoth:SETTing:DELete value: str = driver.source.bb.btooth.setting.get_delete()
Deletes the selected file from the default or specified directory. Deleted are files with the file extension bto. Refer to ‘Accessing Files in the Default or Specified Directory’ for general information on file handling in the default and in a specific directory.
- Returns:
filename: string file name or complete file path; file extension can be omitted
- get_load() str[source]
# [SOURce<HW>]:BB:BTOoth:SETTing:LOAD value: str = driver.source.bb.btooth.setting.get_load()
Loads the selected file from the default or the specified directory. Loaded are files with extension bto. Refer to ‘Accessing Files in the Default or Specified Directory’ for general information on file handling in the default and in a specific directory.
- Returns:
filename: string file name or complete file path; file extension can be omitted
Cloning the Group
# Create a copy of the original group, that exists independently
setting_copy = driver.source.bb.btooth.setting.clone()
Subgroups