From 2780aef87366e5966194d94fab8722eb13629a1e Mon Sep 17 00:00:00 2001 From: nifi Date: Thu, 16 Aug 2007 13:35:33 +0000 Subject: [PATCH] Include msp430def.h for standard defines --- platform/esb/contiki-conf.h | 38 +++---------------------------------- 1 file changed, 3 insertions(+), 35 deletions(-) diff --git a/platform/esb/contiki-conf.h b/platform/esb/contiki-conf.h index 8d8428c12..a7907a2fc 100644 --- a/platform/esb/contiki-conf.h +++ b/platform/esb/contiki-conf.h @@ -1,6 +1,9 @@ #ifndef __CONTIKI_CONF_H__ #define __CONTIKI_CONF_H__ +#define HAVE_STDINT_H +#include + #define QUEUEBUF_CONF_NUM 2 #define ENERGEST_CONF_ON 1 @@ -37,41 +40,6 @@ unsigned long clock_seconds(void); #define LOG_CONF_ENABLED 0 -/* Standard integer types. */ -#include - -/** - * The 8-bit unsigned data type. - * - * This may have to be tweaked for your particular compiler. "unsigned - * char" works for most compilers. - */ -typedef unsigned char u8_t; - -/** - * The 16-bit unsigned data type. - * - * This may have to be tweaked for your particular compiler. "unsigned - * short" works for most compilers. - */ -typedef unsigned short u16_t; - -/** - * The 32-bit unsigned data type. - * - * This may have to be tweaked for your particular compiler. "unsigned - * long" works for most compilers. - */ -typedef unsigned long u32_t; - -/** - * The 32-bit signed data type. - * - * This may have to be tweaked for your particular compiler. "signed - * long" works for most compilers. - */ -typedef long s32_t; - /** * The statistics data type. *