Zigbee Protocol Controller 1.6.0
contiki-conf.h
Go to the documentation of this file.
1
8#ifndef __CONTIKI_CONF_H__
9#define __CONTIKI_CONF_H__
10
11#include <inttypes.h>
12#include "projdefs.h"
13
14#define CC_CONF_REGISTER_ARGS 1
15#define CC_CONF_FUNCTION_POINTER_ARGS 1
16#define CC_CONF_FASTCALL
17#define CC_CONF_VA_ARGS 1
18#define CC_CONF_NO_VA_ARGS (!CC_CONF_VA_ARGS) // Stating the obvious because cc.h checks this first
19#define CC_CONF_ALIGN_PACK 1
20#define CC_CONF_REENTRANT_ARGS 0
21#define CC_CONF_UNSIGNED_CHAR_BUGS 0
22#define CC_CONF_DOUBLE_HASH 0
23
24#define CCIF
25#define CLIF
26
27typedef uint8_t u8_t;
28typedef uint16_t u16_t;
30typedef int32_t s32_t;
32
33#define CLOCK_CONF_SECOND 1000
34
35#define LOG_CONF_ENABLED 0
36
37#define PROCESS_CONF_NO_PROCESS_NAMES 0
38
39#ifdef PROJECT_CONF_H
40#include PROJECT_CONF_H
41#endif /* PROJECT_CONF_H */
42
43#endif /* __CONTIKI_CONF_H__ */
int32_t s32_t
Definition: contiki-conf.h:30
uint32_t u32_t
Definition: contiki-conf.h:29
uint8_t u8_t
Definition: contiki-conf.h:27
uint32_t clock_time_t
Definition: contiki-conf.h:31
uint16_t u16_t
Definition: contiki-conf.h:28