From b17ffabce5a4c3a174a7eb8168a594dfbc9efd68 Mon Sep 17 00:00:00 2001 From: Christian Mehlis Date: Tue, 10 Dec 2013 22:08:15 +0100 Subject: [PATCH] reduce minimal timer from 100ms to 10ms --- cpu/native/hwtimer_cpu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpu/native/hwtimer_cpu.c b/cpu/native/hwtimer_cpu.c index 45e70f4b12..5866bab315 100644 --- a/cpu/native/hwtimer_cpu.c +++ b/cpu/native/hwtimer_cpu.c @@ -45,7 +45,7 @@ #include "debug.h" -#define HWTIMERMINOFFSET 100000 +#define HWTIMERMINOFFSET (10 * 1000UL) // 10 ms static unsigned long native_hwtimer_now; static unsigned long time_null;