From 9d55fde0520140d1b08017f0464fcb475805fcbc Mon Sep 17 00:00:00 2001 From: Ludwig Ortmann Date: Wed, 22 Jan 2014 21:32:09 +0100 Subject: [PATCH] increase inter-timer delay --- tests/test_hwtimer/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_hwtimer/main.c b/tests/test_hwtimer/main.c index f9e8697f70..a61ec303db 100644 --- a/tests/test_hwtimer/main.c +++ b/tests/test_hwtimer/main.c @@ -17,7 +17,7 @@ int main(void) puts("Initializing hwtimer [OK]."); #define BASE_DELAY (1000UL * 1000UL) -#define DELTA_DELAY (100UL * 1000UL) +#define DELTA_DELAY (1000UL * 1000UL) #define MSGLEN 12 // == strlen("callback %2i") char msg[MSGLEN * ARCH_MAXTIMERS]; // == [callback 1\0callback 2\0...] unsigned long delay = BASE_DELAY + ((ARCH_MAXTIMERS-1) * DELTA_DELAY);