8 revoke condition instruction, Revoke condition instruction, Conditionrevoke – Teledyne LeCroy UWBTrainer Exerciser Script Language User Manual
Page 61: Revokecondition
Advertising

LeCroy Corporation
UWBTrainer Exerciser - Generation Script Language Reference Manual
53
9.8 Revoke Condition Instruction
You can instruct the UWBTrainer to release all resources associated with some condition.
Especially do this if several conditions are not being used.
Format
ConditionRevoke( condition_name )
or
RevokeCondition( condition_name )
The instruction named parameter is:
Name: Condition name.
Example
Main
{
# Register the RX Frame condition named "HDR_COND_1".
RegRxFrmCondition ( HDR_COND_1 )
{
# Header Mask/Match
PLCP
{
DestAddr =
0xAABB
SrcAddr =
0xBEEF
}
}
# Do something.
# Revoke condition from the UWBTrainer condition list.
RevokeCondition ( HDR_COND_1 )
}
Advertising