Dexchange

SCPI Commands :

[SOURce<HW>]:LIST:DEXChange:MODE
[SOURce<HW>]:LIST:DEXChange:SELect
Commands in total: 8
Subgroups: 2
Direct child commands: 2
get_mode() DexchMode[source]
# [SOURce<HW>]:LIST:DEXChange:MODE
value: enums.DexchMode = driver.source.listPy.dexchange.get_mode()

Determines the import or export of a list. Specify the source or destination file with the method RsSmw.source.listPy.dexchange.select() .

Returns:

mode: IMPort | EXPort

get_select() str[source]
# [SOURce<HW>]:LIST:DEXChange:SELect
value: str = driver.source.listPy.dexchange.get_select()

Selects the ASCII file for import or export, containing a list.

Returns:

filename: string Filename or complete file path; file extension can be omitted.

set_mode(mode: DexchMode) None[source]
# [SOURce<HW>]:LIST:DEXChange:MODE
driver.source.listPy.dexchange.set_mode(mode = enums.DexchMode.EXPort)

Determines the import or export of a list. Specify the source or destination file with the method RsSmw.source.listPy.dexchange.select() .

Parameters:

mode – IMPort | EXPort

set_select(filename: str) None[source]
# [SOURce<HW>]:LIST:DEXChange:SELect
driver.source.listPy.dexchange.set_select(filename = 'abc')

Selects the ASCII file for import or export, containing a list.

Parameters:

filename – string Filename or complete file path; file extension can be omitted.

Cloning the Group

# Create a copy of the original group, that exists independently
dexchange_copy = driver.source.listPy.dexchange.clone()

Subgroups