High Voltage SourceMeter Instrument Reference Manual Section 14:
2470-901-01 Rev. A / May 2019 14-153
Example
print(smu.source.configlist.catalog())
Request the name of one source configuration list that
is stored in the instrument. Send the command again
until it returns nil to get all stored lists.
Also see
Configuration lists (on page 4-83)
smu.source.configlist.create() (on page 14-153)
smu.source.configlist.create()
This function creates an empty source configuration list.
Type TSP-Link accessible Affected by Where saved
Default value
Instrument reset
Power cycle
Source configuration list
Usage
smu.source.configlist.create("listName")
A string that represents the name of a source configuration list
Details
This command creates an empty configuration list. To add configuration indexes to this list, you need
to use the store command.
Configuration lists are not saved when the instrument is turned off. If you want to save a configuration
list through a power cycle, create a configuration script to save instrument settings, including any
defined configuration lists.
Example
smu.source.configlist.create("MyScrList")
print(smu.source.configlist.catalog())
print(smu.source.configlist.catalog())
smu.source.configlist.store("MyScrList")
smu.source.configlist.store("MyScrList")
print(smu.source.configlist.size("MyScrList"))
Create a source configuration list
named MyScrLst.
Print the name of one configuration list
stored in volatile memory.
Output:
MyScrList
Print the name of one configuration list.
Output:
nil
Nil indicates that no more configuration
lists are stored.
Store a configuration index in
MyScrList.
Store a configuration index in
MyScrList.
Print the number of configuration
indexes in MyScrList.
Output: