aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/Platform/UC3/InterruptManagement.h
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2013-06-01 21:55:31 +0200
committerDean Camera <dean@fourwalledcubicle.com>2013-06-01 21:55:31 +0200
commit7941245122dc547952e573b2c5e8fd7bc657f257 (patch)
tree80ce02a74b7714d26089f750c6223c102abc9158 /LUFA/Platform/UC3/InterruptManagement.h
parent16037433a2caf0c93b811b774a9ea5fd1324514e (diff)
downloadlufa-7941245122dc547952e573b2c5e8fd7bc657f257.tar.gz
lufa-7941245122dc547952e573b2c5e8fd7bc657f257.tar.bz2
lufa-7941245122dc547952e573b2c5e8fd7bc657f257.zip
Ensure core library documentation sections use unique IDs.
Diffstat (limited to 'LUFA/Platform/UC3/InterruptManagement.h')
-rw-r--r--LUFA/Platform/UC3/InterruptManagement.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/LUFA/Platform/UC3/InterruptManagement.h b/LUFA/Platform/UC3/InterruptManagement.h
index 757bcc601..e1f64fcad 100644
--- a/LUFA/Platform/UC3/InterruptManagement.h
+++ b/LUFA/Platform/UC3/InterruptManagement.h
@@ -39,24 +39,24 @@
* \defgroup Group_PlatformDrivers_UC3Interrupts Interrupt Controller Driver - LUFA/Platform/UC3/InterruptManagement.h
* \brief Interrupt Controller Driver for the AVR32 UC3 microcontrollers.
*
- * \section Sec_Dependencies Module Source Dependencies
+ * \section Sec_PlatformDrivers_UC3Interrupts_Dependencies Module Source Dependencies
* The following files must be built with any user project that uses this module:
* - 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
+ * \section Sec_PlatformDrivers_UC3Interrupts_ModDescription Module Description
* Interrupt controller driver for the AVR32 UC3 microcontrollers, for the configuration of interrupt
* handlers within the device.
*
* Usage Example:
* \code
* #include <LUFA/Platform/UC3/InterruptManagement.h>
- *
+ *
* ISR(USB_Group_IRQ_Handler)
* {
* // USB group handler code here
* }
- *
+ *
* void main(void)
* {
* INTC_Init();
@@ -113,8 +113,8 @@
/** Initializes the interrupt controller ready to handle interrupts. This must be called at the
* start of the user program before any interrupts are registered or enabled.
*/
- void INTC_Init(void);
-
+ void INTC_Init(void);
+
/** Retrieves the associated interrupt handler for the interrupt group currently being fired. This
* is called directly from the exception handler routine before dispatching to the ISR.
*