Nested Vectored Interrupt Controller configuration header.

This header defines the functions called by all of the NVIC exceptions/ interrupts. The following are the nine peripheral ISRs available for modification. To use one of these ISRs, it must be instantiated somewhere in the HAL. Each ISR may only be instantiated once. It is not necessary to instantiate all or any of these ISRs (a stub will be automatically generated if an ISR is not instantiated).

  • 1 void halTimer1Isr(void);
  • 1 void halTimer2Isr(void);
  • 1 void halSc1Isr(void);
  • 1 void halSc1Isr(void);
  • 1 void halAdcIsr(void);
  • 1 void halIrqAIsr(void);
  • 1 void halIrqBIsr(void);
  • 1 void halIrqCIsr(void);
  • 1 void halIrqDIsr(void);
Note
This file should not be modified.