Files
mcu.fx2.tri/doc/GPIF/GPIF Designer/dsp/int0.c
T
2026-01-03 19:05:48 +01:00

10 lines
217 B
C

#include "fx2.h"
#include "fx2regs.h"
extern BOOL hpi_int;
void int0_isr (void) interrupt 0
{
hpi_int = TRUE; // HPI interrupted the FX2
EX0 = 0; // disable INT0/ interrupt, let foreground re-enable it
}