Added tools for STM32W.

This commit is contained in:
salvopitru 2010-10-25 10:42:40 +00:00
parent ec5e3ce0d7
commit 5d8636d1f8
34 changed files with 4257 additions and 0 deletions

View file

@ -0,0 +1,18 @@
#ifndef __CONTIKI_CONF_H__
#define __CONTIKI_CONF_H__
#include <stdint.h>
#define CCIF
#define CLIF
typedef uint8_t u8_t;
typedef uint16_t u16_t;
typedef uint32_t u32_t;
typedef int32_t s32_t;
typedef unsigned short uip_stats_t;
#define UIP_CONF_UIP_IP4ADDR_T_WITH_U32 1
typedef unsigned long clock_time_t;
#define CLOCK_CONF_SECOND 1000
#endif /* __CONTIKI_CONF_H__ */