Dexchange
SCPI Commands :
[SOURce<HW>]:LIST:DEXChange:MODE
[SOURce<HW>]:LIST: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>]: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 command [:SOURce<hw>]:LIST:DEXChange:SELect.
- return
mode: IMPort| EXPort
- get_select() str [source]
# SCPI: [SOURce<HW>]:LIST:DEXChange:SELect value: str = driver.source.listPy.dexchange.get_select()
Selects the ASCII file for import or export, containing a 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>]: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 command [:SOURce<hw>]:LIST:DEXChange:SELect.
- param mode
IMPort| EXPort
- set_select(filename: str) None [source]
# SCPI: [SOURce<HW>]:LIST:DEXChange:SELect driver.source.listPy.dexchange.set_select(filename = 'abc')
Selects the ASCII file for import or export, containing a 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.listPy.dexchange.clone()
Subgroups