Configure

SCPI Commands :

[SOURce<HW>]:BB:ARBitrary:WSEGment:CONFigure:CATalog
[SOURce<HW>]:BB:ARBitrary:WSEGment:CONFigure:COMMent
[SOURce<HW>]:BB:ARBitrary:WSEGment:CONFigure:DELete
[SOURce<HW>]:BB:ARBitrary:WSEGment:CONFigure:OFILe
[SOURce<HW>]:BB:ARBitrary:WSEGment:CONFigure:SELect
class ConfigureCls[source]

Configure commands group definition. 14 total commands, 5 Subgroups, 5 group commands

delete(filename: str) None[source]
# SCPI: [SOURce<HW>]:BB:ARBitrary:WSEGment:CONFigure:DELete
driver.source.bb.arbitrary.wsegment.configure.delete(filename = 'abc')

Deletes the selected configuration file.

param filename

string

get_catalog() List[str][source]
# SCPI: [SOURce<HW>]:BB:ARBitrary:WSEGment:CONFigure:CATalog
value: List[str] = driver.source.bb.arbitrary.wsegment.configure.get_catalog()

Queries the available configuration files in the default directory. See also ‘File concept’.

return

catalog: string

get_comment() str[source]
# SCPI: [SOURce<HW>]:BB:ARBitrary:WSEGment:CONFigure:COMMent
value: str = driver.source.bb.arbitrary.wsegment.configure.get_comment()

Enters a comment for the selected configuration file.

return

comment: string

get_ofile() str[source]
# SCPI: [SOURce<HW>]:BB:ARBitrary:WSEGment:CONFigure:OFILe
value: str = driver.source.bb.arbitrary.wsegment.configure.get_ofile()

Defines the file name of the output multi-segment waveform.

return

ofile: string

get_select() str[source]
# SCPI: [SOURce<HW>]:BB:ARBitrary:WSEGment:CONFigure:SELect
value: str = driver.source.bb.arbitrary.wsegment.configure.get_select()

Selects a configuration file from the default directory. If a configuration file with the specified name does not yet exist, it is created. The file extension *.inf_mswv may be omitted.

return

filename: string

set_comment(comment: str) None[source]
# SCPI: [SOURce<HW>]:BB:ARBitrary:WSEGment:CONFigure:COMMent
driver.source.bb.arbitrary.wsegment.configure.set_comment(comment = 'abc')

Enters a comment for the selected configuration file.

param comment

string

set_ofile(ofile: str) None[source]
# SCPI: [SOURce<HW>]:BB:ARBitrary:WSEGment:CONFigure:OFILe
driver.source.bb.arbitrary.wsegment.configure.set_ofile(ofile = 'abc')

Defines the file name of the output multi-segment waveform.

param ofile

string

set_select(filename: str) None[source]
# SCPI: [SOURce<HW>]:BB:ARBitrary:WSEGment:CONFigure:SELect
driver.source.bb.arbitrary.wsegment.configure.set_select(filename = 'abc')

Selects a configuration file from the default directory. If a configuration file with the specified name does not yet exist, it is created. The file extension *.inf_mswv may be omitted.

param filename

string

Cloning the Group

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

Subgroups