2013-11-24 15:57:08 +00:00
|
|
|
#ifndef CONTIKI_CONF_H_
|
|
|
|
#define CONTIKI_CONF_H_
|
2008-02-07 09:39:35 +00:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2012-02-20 19:45:47 +00:00
|
|
|
/* These names are deprecated, use C99 names. */
|
2008-02-07 09:39:35 +00:00
|
|
|
typedef uint8_t u8_t;
|
|
|
|
typedef uint16_t u16_t;
|
|
|
|
typedef uint32_t u32_t;
|
|
|
|
typedef int32_t s32_t;
|
2012-02-20 19:45:47 +00:00
|
|
|
|
2008-02-07 09:39:35 +00:00
|
|
|
typedef unsigned short uip_stats_t;
|
|
|
|
|
2008-02-24 21:14:25 +00:00
|
|
|
#define UIP_CONF_UIP_IP4ADDR_T_WITH_U32 1
|
|
|
|
|
2008-02-07 09:39:35 +00:00
|
|
|
typedef unsigned long clock_time_t;
|
|
|
|
#define CLOCK_CONF_SECOND 1000
|
|
|
|
|
2013-11-24 15:57:08 +00:00
|
|
|
#endif /* CONTIKI_CONF_H_ */
|