Output Functions; Reporttext() - LeCroy USB Protocol Suite Reference Manual

Verification script engine
Table of Contents

Advertisement

LeCroy Corporation

15 Output Functions

This group of functions covers VSE capability to present information in the output window.

15.1 ReportText()

Outputs text in the output window related to the verification script.
Format:
ReportText (text)
Parameters:
text
Text variable, constant or literal
Example:
...
ReportText ("Some text");
...
t = "Some text"
ReportText (t);
...
num_of_packets = in.NumOfPackets;
text = Format("Number of frames = %d", num_of_packets);
ReportText (text);
...
x = 0xAAAA;
y = 0xBBBB;
text = FormatEx("x = 0x%04X, y = 0x%04X", x, y);
ReportText("Text = " + text);
...
Verification Script Engine Reference Manual
Page 73 of 107

Advertisement

Table of Contents
loading

Table of Contents