Section 13: LPT library function reference
Model 4200A-SCS Parameter Analyzer Reference Manual
13-34
4200A-901-01 Rev. C / February 2017
Posts spot mean measurement data into the Clarius Analyze sheet.
This example assumes that a PMU spot mean test is configured to perform 100 (or more) voltage and
current measurements for pulse high and low. Use
pulse_meas_sm
to configure the spot mean test.
The code:
•
Starts the configured test.
•
Uses a while loop to allow the spot mean test to finish.
•
Retrieves voltage and current readings (100 data points) from the buffer.
•
Separates the voltage and current readings for high (amplitude) and low (base).
•
Posts the high measurement data into the Clarius Analyze sheet. Low measurement data is not
posted into the sheet.
Also see
Enabling real time plotting for UTMs
(on page 13-101)
(on page 13-112)
(on page 13-185)
(on page 13-187)
(on page 13-189)
(on page 13-191)
PostDataInt
This command posts an integer-type data point from memory to the Clarius Analyze sheet in the user test module
and plots it on the graph.
Usage
PostDataInt(char *
variableName
, int *
variableValue
);
variableName
The variable name
variableValue
The value of the variable to be transferred
Details
The first parameter is the variable name, defined as
char *
. For example, if the output variable
name is
DrainI
, then
DrainI
(with quotes) is first parameter.
The second parameter is the value of the variable to be transferred. For example, if
DrainI[10]
is
transferred, then you call
PostDataInt("DrainI", DrainI[10])
.
Also see
None