Enabled X-MAC announcements by default, disabled polite broadcast announcements by default
This commit is contained in:
parent
e4b1ff461e
commit
7781bbea58
|
@ -1,9 +1,12 @@
|
||||||
/* -*- C -*- */
|
/* -*- C -*- */
|
||||||
/* @(#)$Id: contiki-conf.h,v 1.33 2009/02/04 19:32:20 joxe Exp $ */
|
/* @(#)$Id: contiki-conf.h,v 1.34 2009/02/14 22:52:24 adamdunkels Exp $ */
|
||||||
|
|
||||||
#ifndef CONTIKI_CONF_H
|
#ifndef CONTIKI_CONF_H
|
||||||
#define CONTIKI_CONF_H
|
#define CONTIKI_CONF_H
|
||||||
|
|
||||||
|
#define XMAC_CONF_ANNOUNCEMENTS 1
|
||||||
|
#define RIME_CONF_NO_POLITE_ANNOUCEMENTS 1
|
||||||
|
|
||||||
#define RIMEBUF_CONF_ATTRS_INLINE 1
|
#define RIMEBUF_CONF_ATTRS_INLINE 1
|
||||||
|
|
||||||
#define SHELL_VARS_CONF_RAM_BEGIN 0x1100
|
#define SHELL_VARS_CONF_RAM_BEGIN 0x1100
|
||||||
|
@ -221,5 +224,10 @@ typedef unsigned long off_t;
|
||||||
#define SPI_ENABLE() ( P4OUT &= ~BV(CSN) ) /* ENABLE CSn (active low) */
|
#define SPI_ENABLE() ( P4OUT &= ~BV(CSN) ) /* ENABLE CSn (active low) */
|
||||||
#define SPI_DISABLE() ( P4OUT |= BV(CSN) ) /* DISABLE CSn (active low) */
|
#define SPI_DISABLE() ( P4OUT |= BV(CSN) ) /* DISABLE CSn (active low) */
|
||||||
|
|
||||||
|
#ifdef PROJECT_CONF_H
|
||||||
|
#include PROJECT_CONF_H
|
||||||
|
#endif /* PROJECT_CONF_H */
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#endif /* CONTIKI_CONF_H */
|
#endif /* CONTIKI_CONF_H */
|
||||||
|
|
Loading…
Reference in a new issue