Section 8: TSP command reference
Model 2461 Interactive SourceMeter® Instrument Reference Manual
8-102
2461-901-01 A/November 2015
Example
print(test7.source)
Assuming a script named
test7
was created on the instrument, this example retrieves the source code.
Output:
reset()
display.settext(display.TEXT1, "Text on line 1")
display.settext(display.TEXT2, "Text on line 2")
Also see
(on page 8-100)
smu.contact.check()
This function indicates whether one or more connections failed the contact check operation.
Type
TSP-Link accessible
Affected by
Where saved
Default value
Function
Yes
Usage
result = smu.contact.check()
result
The result of the contact check operation:
•
true
: All connections passed the contact check
•
false
: One or more connections failed the contact check
Details
Use this function to check for excessive contact resistance at any of the connections to the device
under test (DUT).
Use the
print()
command to query the result of the contact check operation. The query returns
false
if one or more connections exceed the threshold resistance level set by the
smu.contact.threshold
attribute, or it returns
true
if no connections exceed that value.
If you get a failed indication when sending this function, you can use the
smu.contact.checkall()
function to determine which connection failed the contact check test.
Sending this command when contact check is not enabled results in an error.
Example
smu.contact.enable = smu.ON
print(smu.contact.check())
Enable contact check
Check connections for excessive contact
resistance.
Output:
true
Indicates that all connections passed the contact
check operation.
Also see
(on page 8-103)
(on page 8-104)
(on page 8-105)