Keyboard firmwares for Atmel AVR and Cortex-M
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

InterruptManagement.c 2.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. /*
  2. LUFA Library
  3. Copyright (C) Dean Camera, 2012.
  4. dean [at] fourwalledcubicle [dot] com
  5. www.lufa-lib.org
  6. */
  7. /*
  8. Copyright 2012 Dean Camera (dean [at] fourwalledcubicle [dot] com)
  9. Permission to use, copy, modify, distribute, and sell this
  10. software and its documentation for any purpose is hereby granted
  11. without fee, provided that the above copyright notice appear in
  12. all copies and that both that the copyright notice and this
  13. permission notice and warranty disclaimer appear in supporting
  14. documentation, and that the name of the author not be used in
  15. advertising or publicity pertaining to distribution of the
  16. software without specific, written prior permission.
  17. The author disclaim all warranties with regard to this
  18. software, including all implied warranties of merchantability
  19. and fitness. In no event shall the author be liable for any
  20. special, indirect or consequential damages or any damages
  21. whatsoever resulting from loss of use, data or profits, whether
  22. in an action of contract, negligence or other tortious action,
  23. arising out of or in connection with the use or performance of
  24. this software.
  25. */
  26. #include "../../Common/Common.h"
  27. #if (ARCH == ARCH_UC3)
  28. #define __INCLUDE_FROM_INTMANAGEMENT_C
  29. #include "InterruptManagement.h"
  30. /** Interrupt vector table, containing the ISR to call for each interrupt group */
  31. InterruptHandlerPtr_t InterruptHandlers[AVR32_INTC_NUM_INT_GRPS];
  32. /** ISR for unhandled interrupt groups */
  33. ISR(Unhandled_Interrupt)
  34. {
  35. for (;;);
  36. }
  37. /** Retrieves the associated interrupt handler for the interrupt group currently being fired. This
  38. * is called directly from the exception handler routine before dispatching to the ISR.
  39. */
  40. InterruptHandlerPtr_t INTC_GetInterruptHandler(const uint_reg_t InterruptLevel)
  41. {
  42. return InterruptHandlers[AVR32_INTC.icr[AVR32_INTC_INT3 - InterruptLevel]];
  43. }
  44. /** Initializes the interrupt controller ready to handle interrupts. This must be called at the
  45. * start of the user program before any interrupts are registered or enabled.
  46. */
  47. void INTC_Init(void)
  48. {
  49. for (uint8_t InterruptGroup = 0; InterruptGroup < AVR32_INTC_NUM_INT_GRPS; InterruptGroup++)
  50. {
  51. InterruptHandlers[InterruptGroup] = Unhandled_Interrupt;
  52. AVR32_INTC.ipr[InterruptGroup] = Autovector_Table[AVR32_INTC_INT0];
  53. }
  54. __builtin_mtsr(AVR32_EVBA, (uintptr_t)&EVBA_Table);
  55. }
  56. #endif