beautypg.com

Output functions, Reporttext(), Enableoutput() – Teledyne LeCroy SATracer 3G Verification Script Engine manual User Manual

Page 48: Disableoutput(), 14 output functions, Eport, Nable, Utput, Isable, 1 reporttext()

background image

LeCroy Corporation

Verification Script Engine Reference Manual

Version 1.01

14 Output Functions


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

14.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_frames = in.NumOfFrames;

text = Format( “Number of frames : %d”, num_of_frames );

ReportText ( text );

x = 0xAAAA;

y = 0xBBBB;

text = FormatEx( “x = 0x%04X, y = 0x%04X”, x, y );

ReportText( “Text : ” + text );



14.2 EnableOutput()

Enables showing information in the output window and sending COM reporting notifications to

COM clients.

Format :

EnableOutput ()


Example:

EnableOutput ( );



14.3 DisableOutput()

Disables showing information in the output window and sending COM reporting notifications

to COM clients.

43