Setting

SCPI Commands :

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

Setting commands group definition. 16 total commands, 2 Subgroups, 4 group commands

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

This command deletes the selected file with 3GPP FDD settings. The directory is set using command method RsSmbv. MassMemory.currentDirectory. A path can also be specified, in which case the files in the specified directory are read. The file extension can be omitted. Only files with the file extension *.3g are deleted.

param filename

file_name

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

This command reads out the files with 3GPP FDD settings in the default directory. The default directory is set using command method RsSmbv.MassMemory.currentDirectory. Only files with the file extension *.3g are listed.

return

catalog: string

load(filename: str) None[source]
# SCPI: [SOURce<HW>]:BB:W3GPp:SETTing:LOAD
driver.source.bb.w3Gpp.setting.load(filename = 'abc')

This command loads the selected file with 3GPP FDD settings. The directory is set using command method RsSmbv.MassMemory. currentDirectory. A path can also be specified, in which case the files in the specified directory are read. The file extension can be omitted. Only files with the file extension *.3g are loaded.

param filename

file_name

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

This command stores the current 3GPP FDD settings into the selected file. The directory is set using command method RsSmbv.MassMemory.currentDirectory. A path can also be specified, in which case the files in the specified directory are read. Only enter the file name. 3GPP FDD settings are stored as files with the specific file extensions *.3g.

param filename

string

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.source.bb.w3Gpp.setting.clone()

Subgroups