diff options
| author | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2012-07-22 14:00:58 +0000 |
|---|---|---|
| committer | Dean <Dean@d5102386-fcda-11dd-9fdb-3debd5008f28> | 2012-07-22 14:00:58 +0000 |
| commit | 90acbe50784aadbfa38fdf6d203d550a8d9afa0b (patch) | |
| tree | b73c0d19367fda2bb68af334f3c74a53fc636eab /LUFA/Platform/UC3 | |
| parent | 47ca76a9ee1a7c9869436eee13eb3ddc96bcf9cd (diff) | |
Add missing INTC_GetInterruptHandler() function prototype.
git-svn-id: http://lufa-lib.googlecode.com/svn/trunk@2409 d5102386-fcda-11dd-9fdb-3debd5008f28
Diffstat (limited to 'LUFA/Platform/UC3')
| -rw-r--r-- | LUFA/Platform/UC3/InterruptManagement.h | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/LUFA/Platform/UC3/InterruptManagement.h b/LUFA/Platform/UC3/InterruptManagement.h index 2f9ec230..384d6d77 100644 --- a/LUFA/Platform/UC3/InterruptManagement.h +++ b/LUFA/Platform/UC3/InterruptManagement.h @@ -110,10 +110,8 @@ #define INTC_IRQ_LINE(IRQIndex) (IRQIndex % 32) /* Function Prototypes: */ - /** Initializes the interrupt controller, nulling out all interrupt handlers ready for new registration. This - * function should be called once on startup to ensure the interrupt controller is ready for use. - */ - void INTC_Init(void); + void INTC_Init(void); + InterruptHandlerPtr_t INTC_GetInterruptHandler(const uint_reg_t InterruptLevel); /* Inline Functions: */ /** Registers a handler for a given interrupt group. On the AVR32 UC3 devices, interrupts are grouped by |
