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
Commands in total: 17
Subgroups: 5
Direct child commands: 5
delete(filename: str) None[source]
# [SOURce<HW>]:BB:ARBitrary:WSEGment:CONFigure:DELete
driver.source.bb.arbitrary.wsegment.configure.delete(filename = 'abc')

Deletes the selected configuration file.

Parameters:

filename – string

get_catalog() List[str][source]
# [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’.

Returns:

catalog: string

get_comment() str[source]
# [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.

Returns:

comment: string

get_ofile() str[source]
# [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.

Returns:

ofile: string

get_select() str[source]
# [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.

Returns:

filename: string

set_comment(comment: str) None[source]
# [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.

Parameters:

comment – string

set_ofile(ofile: str) None[source]
# [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.

Parameters:

ofile – string

set_select(filename: str) None[source]
# [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.

Parameters:

filename – string

Cloning the Group

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

Subgroups