Move user configuration to contiki-conf.h
This commit is contained in:
parent
ddd15692e1
commit
d7b426c105
@ -13,6 +13,10 @@
|
||||
#else
|
||||
#include "platform-conf.h"
|
||||
#endif /* PLATFORM_CONF_H */
|
||||
/* Map RF_CHANNEL to cc2420 default channel */
|
||||
#ifdef RF_CHANNEL
|
||||
#define CC2420_CONF_CHANNEL RF_CHANNEL
|
||||
#endif /* RF_CHANNEL */
|
||||
|
||||
/* Configure radio driver */
|
||||
#ifndef NETSTACK_CONF_RADIO
|
||||
@ -35,4 +39,8 @@
|
||||
#define AES_128_CONF cc2420_aes_128_driver
|
||||
#endif /* AES_128_CONF */
|
||||
|
||||
/* Disable the stack check library by default: .rom overflow otherwise */
|
||||
#ifndef STACK_CHECK_CONF_ENABLED
|
||||
#define STACK_CHECK_CONF_ENABLED 0
|
||||
#endif
|
||||
#endif /* CONTIKI_CONF_H */
|
||||
|
@ -59,11 +59,6 @@
|
||||
#define PLATFORM_HAS_SHT11 1
|
||||
#define PLATFORM_HAS_RADIO 1
|
||||
|
||||
/* Map RF_CHANNEL to cc2420 default channel */
|
||||
#ifdef RF_CHANNEL
|
||||
#define CC2420_CONF_CHANNEL RF_CHANNEL
|
||||
#endif /* RF_CHANNEL */
|
||||
|
||||
/* CPU target speed in Hz */
|
||||
#define F_CPU 3900000uL /*2457600uL*/
|
||||
|
||||
@ -213,9 +208,4 @@ for SFD timestamping */
|
||||
/* Platform-specific define for the end of the stack region */
|
||||
#define STACK_CONF_ORIGIN ((void *)0x3900)
|
||||
|
||||
/* Disable the stack check library by default: .rom overflow otherwise */
|
||||
#ifndef STACK_CHECK_CONF_ENABLED
|
||||
#define STACK_CHECK_CONF_ENABLED 0
|
||||
#endif
|
||||
|
||||
#endif /* PLATFORM_CONF_H_ */
|
||||
|
Loading…
Reference in New Issue
Block a user