view components/misc_ir @ 268:f2e52cab0a73

abb_inth.c: check all interrupt causes, not just one The original code used if - else if - else if etc constructs, thus the first detected interrupt was the only one handled. However, Iota ITSTATREG is a clear-on-read register, thus if we only handle the first detected interrupt and skip checking the others, then the other interrupts will be lost, if more than one interrupt happened to occur in one ABB interrupt handling cycle - a form of rare race condition. Change the code to check all interrupts that were read in this cycle.
author Mychaela Falconia <falcon@freecalypso.org>
date Sun, 13 Jun 2021 18:17:53 +0000
parents 58b05205d579
children
line wrap: on
line source

# Building misc_ir.lib using the GPF source bits we got with TCS211

CFLAGS="-mw -x -pw2 -o -me -mt -g -mn"

# Defines

CPPFLAGS="-D_TARGET_ -D_NUCLEUS_ -DRUN_INT_RAM"

# Includes

CPPFLAGS="$CPPFLAGS -I$SRC/gpf/misc"
CPPFLAGS="$CPPFLAGS -I$SRC/gpf/inc/nuc"
CPPFLAGS="$CPPFLAGS -I$SRC/nucleus"
CPPFLAGS="$CPPFLAGS -I$SRC/gpf/inc"

# Source modules

SRCDIR=$SRC/gpf/misc

cfile_plain $SRCDIR/printtofile.c
cfile_plain $SRCDIR/tok.c
cfile_plain $SRCDIR/tools.c
cfile_plain $SRCDIR/misc_version.c