7: TSP command reference Series 2600B System SourceMeter® Instrument
7-160 2600BS-901-01 Rev. C / August 2016
Details
This function is useful for aliasing attributes to improve execution speed. Calling the setter function
will execute faster than accessing the attribute directly.
Creating a setter function is only useful if it is going to be called several times. If you are not calling
the setter function several times, it is more efficient to access the attribute directly.
Example
setlevel = makesetter(smua.source, "levelv")
for v = 1, 10 do
setlevel(v)
end
Creates a setter function called
setlevel.
Using setlevel() in the loop
sets the value of
smua.source.levelv,
performing a source sweep.
Also see
makegetter() (on page 7-159)
meminfo()
This function returns the present amount of available memory and the total amount of memory in the instrument.
Type TSP-Link accessible Affected by Where saved Default value
Function No
Usage
freeMem, totalMem = meminfo()
The amount of free dynamically allocated memory available
The total amount of dynamically allocated memory in the instrument
Details
This function returns two values:
• The amount of free dynamically allocated memory available in kilobytes
• The total amount of dynamically allocated memory on the instrument in kilobytes
The difference between the two values is the amount presently used.
Also see
None