High Voltage SourceMeter Instrument Reference Manual Section 4:
2470-901-01 Rev. A / May 2019 4-103
Using TSP commands:
To delete configuration index 8 from a source configuration list named MyConfigList, send the
c
ommand:
smu.source.configlist.delete("MyConfigList", 8)
For a measure configuration list, replace source with measure.
To delete an entire source configuration list named MyConfigList, send the command:
smu.source.configlist.delete("MyConfigList")
For a measure configuration list, replace source with measure.
Viewing the available configuration lists
You can use remote commands to view the names of the configuration lists stored on the instrument.
Using SCPI commands:
To receive the name of one source configuration list stored on the instrument, use the following
command.
:SOURce:CONFiguration:LIST:CATalog?
For a measure configuration list, replace :SOURce with :SENSe.
Each time this command executes, the name of one defined configuration is returned. Keep sending
this command until it returns an empty string to get all defined lists. After the command returns an
empty string, it wraps around and starts returning names again. If only an empty string is returned, no
configuration lists of the specified type exist.
Using TSP commands:
To receive the name of one source configuration list stored on the instrument, use the following
command.
print(smu.source.configlist.catalog())
For a measure configuration list, replace source with measure.
Each time this command executes, the name of one defined configuration is returned. Keep sending
this command until it returns nil to get all defined lists. After the command returns nil, it wraps
around and starts returning names again. If only nil is returned, no configuration lists of the specified
t
ype exist.