beautypg.com

4 trace instruction, Trace instruction, Trace – Teledyne LeCroy Voyager Exerciser Generation Script Language Manual User Manual

Page 100

background image

Teledyne LeCroy

Voyager USB 3.0 Exerciser Generation Script Language Reference Manual

91

9.17.4 Trace Instruction

You can instruct the application to display a trace message in the application output window.

Format

Trace( trace_message )

trace_message:
Trace message to display.

Note: This instruction does not block script execution. If many trace messages are sent in a short
period of time, some of them may be dropped and not displayed. Use the Trace_B instruction

(see below) to guarantee trace message display.

Examples

Main

{

Send

TX_PACKET

Send

TX_PACKET


Trace(

"2 packets were sent."

)

# Does not block script execution.


Send

TX_PACKET

Send

TX_PACKET


Trace(

"4 packets were sent."

)

# Does not block script execution.

}