Dexchange

SCPI Commands :

[SOURce<HW>]:CORRection:DEXChange:MODE
[SOURce<HW>]:CORRection:DEXChange:SELect
class DexchangeCls[source]

Dexchange commands group definition. 8 total commands, 2 Subgroups, 2 group commands

get_mode() RsSmbv.enums.DexchMode[source]
# SCPI: [SOURce<HW>]:CORRection:DEXChange:MODE
value: enums.DexchMode = driver.source.correction.dexchange.get_mode()

Determines import or export of a user correction list. Specify the source or destination file with the command [:SOURce<hw>]:CORRection:DEXChange:SELect.

return

mode: IMPort| EXPort

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

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

return

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

set_mode(mode: RsSmbv.enums.DexchMode) None[source]
# SCPI: [SOURce<HW>]:CORRection:DEXChange:MODE
driver.source.correction.dexchange.set_mode(mode = enums.DexchMode.EXPort)

Determines import or export of a user correction list. Specify the source or destination file with the command [:SOURce<hw>]:CORRection:DEXChange:SELect.

param mode

IMPort| EXPort

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

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

param filename

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

Cloning the Group

# Create a clone of the original group, that exists independently
group2 = driver.source.correction.dexchange.clone()

Subgroups