Setting

SCPI Commands :

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

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

Queries the files with settings in the default directory. Listed are files with the file extension *.J83B. 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:J83B:SETTing:LOAD
value: str = driver.source.bb.j83B.setting.get_load()

Loads the selected file from the default or the specified directory. Loaded are files with extension *.J83B. 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: ‘filename’ Filename or complete file path; file extension can be omitted.

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

Saves the current settings into the selected file; the file extension (*.J83B) 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: ‘filename’ Filename or complete file path

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

Loads the selected file from the default or the specified directory. Loaded are files with extension *.J83B. 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:J83B:SETTing:STORe
driver.source.bb.j83B.setting.set_store(save = 'abc')

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