projects
/
pub
/
USBasp.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Split out bootloader HEX generation into separate directories for each bootloader...
[pub/USBasp.git]
/
LUFA
/
Platform
/
UC3
/
InterruptManagement.h
diff --git
a/LUFA/Platform/UC3/InterruptManagement.h
b/LUFA/Platform/UC3/InterruptManagement.h
index
af99f08
..
384d6d7
100644
(file)
--- a/
LUFA/Platform/UC3/InterruptManagement.h
+++ b/
LUFA/Platform/UC3/InterruptManagement.h
@@
-41,8
+41,8
@@
*
* \section Sec_Dependencies Module Source Dependencies
* The following files must be built with any user project that uses this module:
*
* \section Sec_Dependencies Module Source Dependencies
* The following files must be built with any user project that uses this module:
- * - LUFA/Platform/UC3/InterruptManagement.c
- * - LUFA/Platform/UC3/Exception.S
+ * - LUFA/Platform/UC3/InterruptManagement.c
<i>(Makefile source module name: LUFA_SRC_PLATFORM)</i>
+ * - LUFA/Platform/UC3/Exception.S
<i>(Makefile source module name: LUFA_SRC_PLATFORM)</i>
*
* \section Sec_ModDescription Module Description
* Interrupt controller driver for the AVR32 UC3 microcontrollers, for the configuration of interrupt
*
* \section Sec_ModDescription Module Description
* Interrupt controller driver for the AVR32 UC3 microcontrollers, for the configuration of interrupt
@@
-71,7
+71,7
@@
#define _UC3_INTERRUPT_MANAGEMENT_H_
/* Includes: */
#define _UC3_INTERRUPT_MANAGEMENT_H_
/* Includes: */
- #include
<LUFA/Common/Common.h>
+ #include
"../../Common/Common.h"
/* Enable C linkage for C++ Compilers: */
#if defined(__cplusplus)
/* Enable C linkage for C++ Compilers: */
#if defined(__cplusplus)
@@
-93,7
+93,7
@@
/* Public Interface - May be used in end-application: */
/* Macros: */
/* Public Interface - May be used in end-application: */
/* Macros: */
- /** Converts a given interrupt index into its assocated interrupt group.
+ /** Converts a given interrupt index into its assoc
i
ated interrupt group.
*
* \param[in] IRQIndex Index of the interrupt request to convert.
*
*
* \param[in] IRQIndex Index of the interrupt request to convert.
*
@@
-101,7
+101,7
@@
*/
#define INTC_IRQ_GROUP(IRQIndex) (IRQIndex / 32)
*/
#define INTC_IRQ_GROUP(IRQIndex) (IRQIndex / 32)
- /** Converts a given interrupt index into its assocated interrupt line.
+ /** Converts a given interrupt index into its assoc
i
ated interrupt line.
*
* \param[in] IRQIndex Index of the interrupt request to convert.
*
*
* \param[in] IRQIndex Index of the interrupt request to convert.
*
@@
-110,10
+110,8
@@
#define INTC_IRQ_LINE(IRQIndex) (IRQIndex % 32)
/* Function Prototypes: */
#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
/* Inline Functions: */
/** Registers a handler for a given interrupt group. On the AVR32 UC3 devices, interrupts are grouped by