beautypg.com

3 triggeranalyzer instruction, 4 trace instruction, Triggeranalyzer instruction – Teledyne LeCroy UWBTrainer Exerciser Script Language User Manual

Page 77: Trace instruction, Trace instru

background image

LeCroy Corporation

UWBTrainer Exerciser - Generation Script Language Reference Manual

69

9.19.3 TriggerAnalyzer instruction

You can instruct the application to trigger UWBTracer.

Format

TriggerAnalyzer

Example

Main

{

StartRecording(

"C:\\my_rec.rec"

,

"C:\\Test1.uwb"

)

Send

TX_FRAME

Send

TX_FRAME

TriggerAnalyzer

# Send a trigger signal to the analyzer

.

Send

TX_FRAME

Send

TX_FRAME

}

9.19.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 displaying.

Examples

Main

{

Send

TX_FRAME

Send

TX_FRAME

Trace(

"2 frames were sent."

)

# Does not block script execution.

Send

TX_FRAME

Send

TX_FRAME

Trace(

"4 frames were sent."

)

# Does not block script execution.

}