
143
Chapter 2 Applications Programming
_settrap(220+26,V_minimon); /* TXDI interrupt */
. . .
The
_settrap()
HIF library service is used to install a new INTR3 handler; the
address of the old handler is returned. The MiniMON29K code is used to process
three peripheral interrupts via INTR3. The
_settrap()
service is used again to sepa-
rately
reinstall
the handlers required by MiniMON29K. New interrupt handlers for
additional on–chip peripherals can then be installed with further calls to
_settrap()
or
interrupt()
.
2.5.6 A Signal Dispatcher
Release 3.2, or newer, of the High C 29K compiler supports routines of defined
return–type
_Interrupt
. The use of this non–standard keyword was explained in sec-
tion 2.5.4. The keyword is used here to support a signal dispatcher. The method relies
on interrupts being processed in two stages. The first stage operates in Freeze mode.
It responds immediately to the interrupting device, captures any critical data and
deactivates the interrupt request. The second stage, if required, takes the form of a
signal handler. The
sig_sig
variable is used by the Freeze mode handler to request
signal handler execution. A signal handler can not be executed without a freeze mode
handler making the necessary request. This is because interrupts are not disabled in
the signal associate code.
The technique has a number of benefits: It is seldom necessary to disable inter-
rupts for long periods, as asynchronous interrupt events are only initially dealt with in
Freeze mode. This reduces interrupt latency. Signal handlers can be queued for pro-
cessing when nested interrupts would occur. This eliminates the need to prepare a C
level interrupt processing environment for each interrupt. A C level environment
need only be built for a Signal Dispatcher routine. The Signal Dispatcher is then re-
sponsible for calling the appropriate signal handler for all signals generated by inter-
rupts. The Signal Dispatcher is started in response to the first signal occurring. The
dispatcher causes execution of the first signal handler, then determines if other signal
handlers have been requested while the current signal handler was executing. The
dispatcher continues to processes signals until there are none remaining. At this point
the original interrupted state is restored. The original state being the processor state at
the time the first interrupt in the sequence occurred. The first interrupt occurred while
no interrupt or signal handler was being processed; and it caused the Signal Dispatch-
er to start execution.
Avoiding nested interrupts, other than for Freeze mode handling, is most
beneficial when large numbers of multiply nested interrupts are expected, and the
cost of preparing C level context for interrupt processing is high. For example, using
interrupt context caching, the processor can be prepared for Freeze mode interrupt