summaryrefslogtreecommitdiffstats
path: root/nuttx/arch/arm/src/lm3s
diff options
context:
space:
mode:
authorpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2009-05-18 22:21:58 +0000
committerpatacongo <patacongo@7fd9a85b-ad96-42d3-883c-3090e2eb8679>2009-05-18 22:21:58 +0000
commitec06d6dbc003d0e7570144d19ee7e903351f14b7 (patch)
treedaa4166cfd41c70ce99278f3c4f46c2075a1eaa2 /nuttx/arch/arm/src/lm3s
parentfca96cc5646eb14bd6790f34a236622c942c04e3 (diff)
timer interrupt now works
git-svn-id: https://nuttx.svn.sourceforge.net/svnroot/nuttx/trunk@1791 7fd9a85b-ad96-42d3-883c-3090e2eb8679
Diffstat (limited to 'nuttx/arch/arm/src/lm3s')
-rw-r--r--nuttx/arch/arm/src/lm3s/lm3s_timerisr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/nuttx/arch/arm/src/lm3s/lm3s_timerisr.c b/nuttx/arch/arm/src/lm3s/lm3s_timerisr.c
index f063ee9c50..95b358df16 100644
--- a/nuttx/arch/arm/src/lm3s/lm3s_timerisr.c
+++ b/nuttx/arch/arm/src/lm3s/lm3s_timerisr.c
@@ -129,7 +129,7 @@ void up_timerinit(void)
/* Attach the timer interrupt vector */
- (void)irq_attach(LMSB_IRQ_SYSTICK, (xcpt_t)up_timerisr);
+ (void)irq_attach(LM3S_IRQ_SYSTICK, (xcpt_t)up_timerisr);
/* Enable SysTick interrupts */
@@ -137,5 +137,5 @@ void up_timerinit(void)
/* And enable the timer interrupt */
- up_enable_irq(LMSB_IRQ_SYSTICK);
+ up_enable_irq(LM3S_IRQ_SYSTICK);
}