aboutsummaryrefslogtreecommitdiffstats
path: root/os/hal/platforms/LPC214x/vic.c
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-03-25 15:28:15 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2010-03-25 15:28:15 +0000
commitdea859c252d1ba02aaead3022b004702679712a6 (patch)
tree797ad6edd1b85672dcf84d1a476e3312d9bfdf5e /os/hal/platforms/LPC214x/vic.c
parentf38a21493342f3bd2f7e3371508e4ff280f76fb3 (diff)
downloadChibiOS-dea859c252d1ba02aaead3022b004702679712a6.tar.gz
ChibiOS-dea859c252d1ba02aaead3022b004702679712a6.tar.bz2
ChibiOS-dea859c252d1ba02aaead3022b004702679712a6.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1777 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/platforms/LPC214x/vic.c')
-rw-r--r--os/hal/platforms/LPC214x/vic.c18
1 files changed, 10 insertions, 8 deletions
diff --git a/os/hal/platforms/LPC214x/vic.c b/os/hal/platforms/LPC214x/vic.c
index f9b18f887..c4e11231f 100644
--- a/os/hal/platforms/LPC214x/vic.c
+++ b/os/hal/platforms/LPC214x/vic.c
@@ -18,8 +18,9 @@
*/
/**
- * @file LPC214x/vic.c
- * @brief LPC214x VIC peripheral support code.
+ * @file LPC214x/vic.c
+ * @brief LPC214x VIC peripheral support code.
+ *
* @addtogroup LPC214x_VIC
* @{
*/
@@ -27,8 +28,8 @@
#include "ch.h"
/**
- * @brief VIC Initialization.
- * @note Better reset everything in the VIC, it is a HUGE source of trouble.
+ * @brief VIC Initialization.
+ * @note Better reset everything in the VIC, it is a HUGE source of trouble.
*/
void vic_init(void) {
int i;
@@ -45,11 +46,12 @@ void vic_init(void) {
}
/**
- * @brief Initializes a VIC vector.
+ * @brief Initializes a VIC vector.
* @details Set a vector for an interrupt source and enables it.
- * @param[in] handler the pointer to the IRQ service routine
- * @param[in] vector the vector number
- * @param[in] source the IRQ source to be associated to the vector
+ *
+ * @param[in] handler the pointer to the IRQ service routine
+ * @param[in] vector the vector number
+ * @param[in] source the IRQ source to be associated to the vector
*/
void SetVICVector(void *handler, int vector, int source) {