Flexible NC programming
1.14 Interrupt routine (ASUB)
Job planning
Programming Manual, 07/2010, 6FC5398-2BP40-0BA0
117
1.14.5 Delete assignment of interrupt routine (CLRINT)
Function
An input → interrupt routine defined using SETINT can be deleted with CLRINT.
Syntax
CLRINT(<n>)
Significance
CLRINT(<n>): Command: Deleting the interrupt assignment of input <n>
Parameter: Input number
Type: INT
<n>:
Range of values: 1 ... 8
Example
Program code Comments
...
N20 SETINT(3) PRIO=2 ABHEB_Z ;
...
N50 CLRINT(3) ; The assignment between input "3" and
interrupt routine "ABHEB_Z" is deleted.
...