aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorThomas Otto2010-04-13 22:42:26 +0200
committerThomas Otto2010-04-13 22:42:26 +0200
commit4ae25c865b9e9b3ad03aec6e588f1bbcdbb0f620 (patch)
tree6d40bd1dda5690b92a5d48fe03efca2464fb67c5 /examples
parentd3890f9b326600278c286093efd680e81be33b46 (diff)
Corrected comment only.
Diffstat (limited to 'examples')
-rw-r--r--examples/other/timer_interrupt/timer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/other/timer_interrupt/timer.c b/examples/other/timer_interrupt/timer.c
index e1db7e3..f88de86 100644
--- a/examples/other/timer_interrupt/timer.c
+++ b/examples/other/timer_interrupt/timer.c
@@ -79,7 +79,7 @@ void gpio_setup(void)
void nvic_setup()
{
- /* without this the timer intterrupt routing will newer be called */
+ /* without this the timer interrupt routine will never be called */
nvic_enable_irq(NVIC_TIM2_IRQ);
nvic_set_priority(NVIC_TIM2_IRQ, 1);
}