Setting

SCPI Commands :

[SOURce<HW>]:BB:DVBT:SETTing:CATalog
[SOURce<HW>]:BB:DVBT:SETTing:DELete
[SOURce<HW>]:BB:DVBT:SETTing:LOAD
[SOURce<HW>]:BB:DVBT:SETTing:STORe
class SettingCls[source]

Setting commands group definition. 4 total commands, 0 Subgroups, 4 group commands

delete(delete: str) None[source]
# SCPI: [SOURce<HW>]:BB:DVBT:SETTing:DELete
driver.source.bb.dvbt.setting.delete(delete = 'abc')

Deletes the selected file from the default or the specified directory. Deleted are files with extension *.dvbt. Refer to ‘Accessing Files in the Default or Specified Directory’ for general information on file handling in the default and in a specific directory.

param delete:

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

get_catalog() List[str][source]
# SCPI: [SOURce<HW>]:BB:DVBT:SETTing:CATalog
value: List[str] = driver.source.bb.dvbt.setting.get_catalog()

Queries the files with settings in the default directory. Listed are files with the file extension *.dvbt. Refer to ‘Accessing Files in the Default or Specified Directory’ for general information on file handling in the default and in a specific directory.

return:

dvbt_cat_name: No help available

get_load() str[source]
# SCPI: [SOURce<HW>]:BB:DVBT:SETTing:LOAD
value: str = driver.source.bb.dvbt.setting.get_load()

Loads the selected file from the default or the specified directory. Loaded are files with extension *.dvbt. Refer to ‘Accessing Files in the Default or Specified Directory’ for general information on file handling in the default and in a specific directory.

return:

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

get_store() str[source]
# SCPI: [SOURce<HW>]:BB:DVBT:SETTing:STORe
value: str = driver.source.bb.dvbt.setting.get_store()

Saves the current settings into the selected file; the file extension (*.dvbt) is assigned automatically. Refer to ‘Accessing Files in the Default or Specified Directory’ for general information on file handling in the default and in a specific directory.

return:

dvbt_save: ‘filename’

set_load(dvbt_recall: str) None[source]
# SCPI: [SOURce<HW>]:BB:DVBT:SETTing:LOAD
driver.source.bb.dvbt.setting.set_load(dvbt_recall = 'abc')

Loads the selected file from the default or the specified directory. Loaded are files with extension *.dvbt. Refer to ‘Accessing Files in the Default or Specified Directory’ for general information on file handling in the default and in a specific directory.

param dvbt_recall:

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

set_store(dvbt_save: str) None[source]
# SCPI: [SOURce<HW>]:BB:DVBT:SETTing:STORe
driver.source.bb.dvbt.setting.set_store(dvbt_save = 'abc')

Saves the current settings into the selected file; the file extension (*.dvbt) is assigned automatically. Refer to ‘Accessing Files in the Default or Specified Directory’ for general information on file handling in the default and in a specific directory.

param dvbt_save:

‘filename’