13-30 Factory Scripts Series 2600 System SourceMeters Reference Manual
2600S-901-01 Rev. A / May 2006 Return to Section 13 topics
TSP Project Name: KIFactoryPulse
TSP Test Script Name: KIPulse
Firmware Version: 1.2.0 and later
Function:
InitiatePulseTest
Usage:
f, msg = InitiatePulseTest(tag)
Description:
This function initiates the pulse configuration assigned tag.
Parameters: tag: Numeric identifier of pulse train configuration to be initiated.
Return
Values:
f: A Boolean flag. This flag will be true when the pulse was
successfully configured, false when errors were encountered.
msg: A string message. If the f flag is false, msg will contain an error
message. Otherwise, msg will contain a string indicating successful
configuration.
Output
Data:
None
Example(s):
smua.reset()
smua.source.rangev = 5
smua.source.rangei = 1
smua.source.levelv = 0
smua.measure.rangev = 5
smua.measure.rangei = 1
smua.measure.nplc = 0.01
smua.measure.autozero = smua.AUTOZERO_ONCE
smua.nvbuffer1.clear()
smua.nvbuffer1.appendmode = 1
smua.source.output = smua.OUTPUT_ON
f1, msg1 = ConfigPulseVMeasureI(smua, 0, 5, 1, 0.002, 0.2,
10,
smua.nvbuffer1, 1)
if (f1 == true) then
f2, msg2 = InitiatePulseTest(1)
print("Initiate message:", msg2)
else
print("Config errors:", msg1)
end