aboutsummaryrefslogtreecommitdiff
path: root/lib/dispatch
diff options
context:
space:
mode:
authorchrysn2012-10-19 19:07:30 +0200
committerchrysn2012-10-19 19:10:42 +0200
commit14a5fc78cf5e50364d6268aaeb1871966ee89b32 (patch)
treecbcf8143288c8746147fac5a81ee86a0fe9fdbd5 /lib/dispatch
parent99d7b210323be1d87dd6cc34c9bb5c53e401b5c3 (diff)
completing dispatch
the LM3S irq list was previously unused as it was missing in the dispatch files; now it got added. (before HEAD^, it wouldn't have made any difference because the discriminating constant wasn't defined anyway) also, this enhances the warning messages
Diffstat (limited to 'lib/dispatch')
-rw-r--r--lib/dispatch/vector_nvic.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/lib/dispatch/vector_nvic.c b/lib/dispatch/vector_nvic.c
index fc5fdd2..d5e4a60 100644
--- a/lib/dispatch/vector_nvic.c
+++ b/lib/dispatch/vector_nvic.c
@@ -11,8 +11,11 @@
#elif defined(LPC43XX)
# include "../lpc43xx/vector_nvic.c"
+#elif defined(LM3S)
+# include "../lm3s/vector_nvic.c"
+
#else
-# warning"no chipset defined; user interrupts are disabled"
+# warning"no interrupts defined for chipset; not allocating space in the vector table"
#define IRQ_HANDLERS