Setting

SCPI Commands :

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

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

delete(fm_del: str) None[source]
# SCPI: [SOURce<HW>]:BB:RADio:FM:SETTing:DELete
driver.source.bb.radio.fm.setting.delete(fm_del = 'abc')

Deletes the selected file from the default or the specified directory. Deleted are files with extension *.am/fm/rds. 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 fm_del:

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

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

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

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

get_load() str[source]
# SCPI: [SOURce<HW>]:BB:RADio:FM:SETTing:LOAD
value: str = driver.source.bb.radio.fm.setting.get_load()

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

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

get_store() str[source]
# SCPI: [SOURce<HW>]:BB:RADio:FM:SETTing:STORe
value: str = driver.source.bb.radio.fm.setting.get_store()

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

fm_sav: ‘filename’ Filename or complete file path

set_load(fm_rcl: str) None[source]
# SCPI: [SOURce<HW>]:BB:RADio:FM:SETTing:LOAD
driver.source.bb.radio.fm.setting.set_load(fm_rcl = 'abc')

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

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

set_store(fm_sav: str) None[source]
# SCPI: [SOURce<HW>]:BB:RADio:FM:SETTing:STORe
driver.source.bb.radio.fm.setting.set_store(fm_sav = 'abc')

Saves the current settings into the selected file; the file extension (*.am/fm/rds) 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 fm_sav:

‘filename’ Filename or complete file path