From b84f771c6bc3534f6495c4dd78a8d1699fd30136 Mon Sep 17 00:00:00 2001 From: oliverschmidt Date: Fri, 22 Oct 2010 20:28:58 +0000 Subject: [PATCH] The recent change in core/net/mac/lpp.c requires CLOCK_SECOND to be at least twice NETSTACK_RDC_CHANNEL_CHECK_RATE in order to compile. --- cpu/6502/6502def.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cpu/6502/6502def.h b/cpu/6502/6502def.h index ab2756833..6b87dd86e 100644 --- a/cpu/6502/6502def.h +++ b/cpu/6502/6502def.h @@ -30,7 +30,7 @@ * * Author: Oliver Schmidt * - * @(#)$Id: 6502def.h,v 1.26 2010/10/06 19:48:26 oliverschmidt Exp $ + * @(#)$Id: 6502def.h,v 1.27 2010/10/22 20:28:58 oliverschmidt Exp $ */ #ifndef __6502DEF_H__ @@ -68,8 +68,8 @@ typedef unsigned short uip_stats_t; #define UIP_ARCH_ADD32 1 #define UIP_ARCH_CHKSUM 1 -#define MAC_CONF_CHANNEL_CHECK_RATE CLOCK_CONF_SECOND -#define NETSTACK_CONF_RDC_CHANNEL_CHECK_RATE CLOCK_CONF_SECOND +#define MAC_CONF_CHANNEL_CHECK_RATE 1 +#define NETSTACK_CONF_RDC_CHANNEL_CHECK_RATE 1 #define LOADER_CONF_ARCH "lib/unload.h"