beautypg.com

5 trace_b instruction, Trace_b instruction, Trace_b – Teledyne LeCroy Voyager Exerciser Generation Script Language Manual User Manual

Page 101

background image

Teledyne LeCroy

Voyager USB 3.0 Exerciser Generation Script Language Reference Manual

92

9.17.5 Trace_B Instruction

You can instruct the application to display a trace message in the application output window. The
script stops and does not proceed until the application displays the trace message.

Format

Trace_B( trace_message )

trace_message:
Trace message to display.

Note: This instruction blocks script execution to guarantee trace message display. However, this
can break precise timing sequences. Use the Trace instruction (see above) if you do not want to

block script execution.

Examples

Main

{

Send

TX_PACKET

Send

TX_PACKET


Trace_B(

"2 packets were sent."

)

# Blocks script execution.


Send

TX_PACKET

Send

TX_PACKET


Trace_B(

"4 packets were sent."

)

# Blocks script execution.

}