Teledyne-lecroy Verification Script Engine (VSE) Manual Manual de usuario Pagina 89

  • Descarga
  • Añadir a mis manuales
  • Imprimir
  • Pagina
    / 115
  • Tabla de contenidos
  • MARCADORES
  • Valorado. / 5. Basado en revisión del cliente
Vista de pagina 88
Teledyne LeCroy Verification Script Engine Reference Manual
Page 89 of 115
18.2 SetMarker()
This function sets a marker for some trace event.
Format: SetMarker(marker_text)
SetMarker(marker_text, level, index)
Parameters:
marker_text Text of the marker
level Transaction level of the event to jump
index Transaction index of the event to jump
Remarks:
If no parameters were specified, other than marker_text, the application sets the marker to the current event
being processed by VSE.
If wrong parameters were specified (for example, index exceeding the maximal index for the specified
transaction level), the function does nothing and an error message is sent to the output window.
Example:
# Set marker to the current event.
if(Something == interesting) SetMarker("!!! Something cool !!!");
if(SomeCondition)
{
interesting_level = in.Level;
interesting_index = in.Index;
}
OnFinishScript()
{
# Set marker to the interesting event.
SetMarker(" !!! Cool Marker !!! ", interesting_level, interesting_index);
# Go to the interesting event.
GotoEvent(interesting_level, interesting_index);
}
Vista de pagina 88
1 2 ... 84 85 86 87 88 89 90 91 92 93 94 ... 114 115

Comentarios a estos manuales

Sin comentarios