STM32 V5 source code
guowenxue
2018-02-04 785deec23b4cb1e7c4c4d81eb808f195adb1d98a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#ifndef __CONTIKI_CONF_H__CDBB4VIH3I__
#define __CONTIKI_CONF_H__CDBB4VIH3I__
 
#include <stdint.h>
 
#define CCIF
#define CLIF
 
#define WITH_UIP 1
#define WITH_ASCII 1
 
#define CLOCK_CONF_SECOND 100
 
/* These names are deprecated, use C99 names. */
typedef uint8_t u8_t;
typedef uint16_t u16_t;
typedef uint32_t u32_t;
typedef int8_t s8_t;
typedef int16_t s16_t;
typedef int32_t s32_t;
 
typedef unsigned int clock_time_t;
typedef unsigned int uip_stats_t;
 
#ifndef BV
#define BV(x) (1<<(x))
#endif
 
/* uIP configuration */
#define UIP_CONF_LLH_LEN         0
#define UIP_CONF_BROADCAST       1
#define UIP_CONF_LOGGING 1
#define UIP_CONF_BUFFER_SIZE 116
 
#define UIP_CONF_TCP_FORWARD 1
 
/* Prefix for relocation sections in ELF files */
#define REL_SECT_PREFIX ".rel"
 
#define CC_BYTE_ALIGNED __attribute__ ((packed, aligned(1)))
 
#define USB_EP1_SIZE 64
#define USB_EP2_SIZE 64
 
#define RAND_MAX 0x7fff
#endif /* __CONTIKI_CONF_H__CDBB4VIH3I__ */