Section 11: TSP command reference Series 3700A System Switch/Multimeter Reference Manual
11-162 3700AS-901-01 Rev. D/June 2018
for name in dmm.configure.catalog() do
print(name)
end
Prints the names of all user-created DMM
configurations in the instrument.
The output will look similar to:
TestDcv
TestTemperature
TestTwoWire
This indicates there are three user-created DMM
configurations in the instrument with the names
TestDCV, TestTemperature, and TestTwoWire.
for name in dmm.configure.catalog() do
dmm.configure.delete(name)
end
Deletes all user-created DMM configurations
from the instrument.
Also see
dmm.configure.delete() (on page 11-162)
dmm.configure.query() (on page 11-163)
dmm.configure.recall() (on page 11-165)
dmm.configure.set() (on page 11-166)
dmm.configure.delete()
This function deletes a user-created DMM configuration from memory.
Usage
dmm.configure.delete("name")
String that contains the name of the DMM configuration to delete
Details
If you delete a DMM configuration that is assigned to channels or channel patterns, those channels
and patterns revert back to the factory default DMM configuration of "nofunction"
(dmm.setconfig()).
If you delete a DMM configuration that is used in a scan list, the scan list is modified and the channel
is set to "nofunction" for that configuration.
You cannot delete a DMM configuration on a closed channel. If you attempt to delete it, error code
1114, "Settings conflict with deleting DMM configuration assigned to closed channel," is generated.
An error is generated if the name specified does not exist as a user configuration.
Example
dmm.configure.delete("DCVDMMConfig")
Deletes a user configuration called DCVDMMConfig.
Also see
dmm.configure.catalog() (on page 11-161)
dmm.configure.set() (on page 11-166)
dmm.configure.query() (on page 11-163)
dmm.configure.recall() (on page 11-165)