summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-05-18 22:21:58 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2009-05-18 22:21:58 +0000
commit06646cb429ba386a00c57bcce7a87456b22bc781 (patch)
treedaa4166cfd41c70ce99278f3c4f46c2075a1eaa2
parentb460ac355757a182b75a7e8733372f47a3032fd1 (diff)
downloadnuttx-06646cb429ba386a00c57bcce7a87456b22bc781.tar.gz
nuttx-06646cb429ba386a00c57bcce7a87456b22bc781.tar.bz2
nuttx-06646cb429ba386a00c57bcce7a87456b22bc781.zip
timer interrupt now works
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1791 42af7a65-404d-4744-a932-0658087f49c3
-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 f063ee9c5..95b358df1 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);
}