Setting

SCPI Commands :

[SOURce<HW>]:BB:ATSM:SETTing:CATalog
[SOURce<HW>]:BB:ATSM:SETTing:DELete
[SOURce<HW>]:BB:ATSM:SETTing:LOAD
[SOURce<HW>]:BB:ATSM: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:ATSM:SETTing:DELete
driver.source.bb.atsm.setting.delete(delete = 'abc')

Deletes the selected file from the default or the specified directory. Deleted are files with extension *.atsm. 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:ATSM:SETTing:CATalog
value: List[str] = driver.source.bb.atsm.setting.get_catalog()

Queries the files with settings in the default directory. Listed are files with the file extension *.atsm. 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:

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

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

Loads the selected file from the default or the specified directory. Loaded are files with extension *.atsm. 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:

recall: No help available

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

Saves the current settings into the selected file; the file extension (*.atsm) 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:

save: No help available

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

Loads the selected file from the default or the specified directory. Loaded are files with extension *.atsm. 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 recall:

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

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

Saves the current settings into the selected file; the file extension (*.atsm) 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 save:

‘filename’ Filename or complete file path