From ea6c65d8133c5af793578fea28df8933e8ea08de Mon Sep 17 00:00:00 2001 From: "Anton D. Kachalov" Date: Mon, 27 Jul 2015 18:29:24 +0300 Subject: [PATCH] [moxart/moxart_timer] Correct compare value for T1 Signed-off-by: Anton D. Kachalov --- arch/arm/src/moxart/moxart_timer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/arm/src/moxart/moxart_timer.c b/arch/arm/src/moxart/moxart_timer.c index d1b5d769e8d..06e23740549 100644 --- a/arch/arm/src/moxart/moxart_timer.c +++ b/arch/arm/src/moxart/moxart_timer.c @@ -84,7 +84,7 @@ enum timer_int { * ************************************************************/ -static uint32_t cmp = BOARD_32KOSC_FREQUENCY * 8 / 1000; +static uint32_t cmp = BOARD_32KOSC_FREQUENCY / 100; int up_timerisr(int irq, uint32_t *regs) {