From 282ffcd5ba93cc6c3e11b2b08302497c3a8a8538 Mon Sep 17 00:00:00 2001 From: gdisirio Date: Thu, 24 Dec 2009 09:47:56 +0000 Subject: Linux demo ok. git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@1464 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- os/hal/platforms/Linux/hal_lld.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/os/hal/platforms/Linux/hal_lld.c b/os/hal/platforms/Linux/hal_lld.c index a67790d8a..3f045b138 100644 --- a/os/hal/platforms/Linux/hal_lld.c +++ b/os/hal/platforms/Linux/hal_lld.c @@ -60,6 +60,8 @@ static struct timeval tick = {0, 1000000 / CH_FREQUENCY}; void hal_lld_init(void) { puts("Win32 ChibiOS/RT simulator (Linux)\n"); + gettimeofday(&nextcnt, NULL); + timeradd(&nextcnt, &tick, &nextcnt); } /** @@ -77,7 +79,7 @@ void ChkIntSources(void) { #endif gettimeofday(&tv, NULL); - if (timercmp(&nextcnt, &tv, <)) { + if (timercmp(&tv, &nextcnt, >=)) { timeradd(&nextcnt, &tick, &nextcnt); chSysTimerHandlerI(); if (chSchIsRescRequiredExI()) -- cgit v1.2.3