beautypg.com

5 trace_b instruction, Trace_b instruction, Trace_b inst – Teledyne LeCroy UWBTrainer Exerciser Script Language User Manual

Page 78

background image

LeCroy Corporation

UWBTrainer Exerciser - Generation Script Language Reference Manual

70

9.19.5 Trace_B Instruction

You can instruct the application to display a trace message in the application output window. The
script will stop and will 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 displaying. 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_FRAME

Send

TX_FRAME

Trace_B(

"2 frames were sent."

)

# Blocks script execution.

Send

TX_FRAME

Send

TX_FRAME

Trace_B(

"4 frames were sent."

)

# Blocks script execution.

}