From ffce4566125568d831deab7abd89a8d93657bb7a Mon Sep 17 00:00:00 2001 From: oliverschmidt Date: Mon, 5 Apr 2010 15:10:06 +0000 Subject: [PATCH] If rtimer_arch_now() is mapped to clock_time() it seems reasonable to map RTIMER_ARCH_SECOND to CLOCK_CONF_SECOND for consistency reasons. --- cpu/native/rtimer-arch.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cpu/native/rtimer-arch.h b/cpu/native/rtimer-arch.h index b97e9f57f..f334f5acd 100644 --- a/cpu/native/rtimer-arch.h +++ b/cpu/native/rtimer-arch.h @@ -28,7 +28,7 @@ * * This file is part of the Contiki operating system. * - * $Id: rtimer-arch.h,v 1.3 2008/02/09 14:02:12 oliverschmidt Exp $ + * $Id: rtimer-arch.h,v 1.4 2010/04/05 15:10:06 oliverschmidt Exp $ */ /** @@ -43,7 +43,7 @@ #include "contiki-conf.h" -#define RTIMER_ARCH_SECOND 1000 +#define RTIMER_ARCH_SECOND CLOCK_CONF_SECOND #define rtimer_arch_now() clock_time()