fix defines for raw mode

This commit is contained in:
maralvira 2010-11-07 18:34:52 +00:00
parent a920b73903
commit e029fa8da0
2 changed files with 7 additions and 7 deletions

View file

@ -30,7 +30,7 @@
*
* This file is part of the Contiki OS.
*
* $Id: contiki-maca.c,v 1.4 2010/09/13 14:15:58 maralvira Exp $
* $Id: contiki-maca.c,v 1.5 2010/11/07 18:34:52 maralvira Exp $
*/
#include <stdint.h>
@ -53,8 +53,8 @@
#define PRINTF(...)
#endif
#ifndef MACA_RAW_PREPEND
#define MACA_RAW_PREPEND 0xff
#ifndef CONTIKI_MACA_PREPEND_BYTE
#define CONTIKI_MACA_PREPEND_BYTE 0xff
#endif
#ifndef BLOCKING_TX

View file

@ -79,10 +79,10 @@
#define uart_init uart1_init
#define dbg_putchar(x) uart1_putc(x)
#define USE_FORMATTED_STDIO 1
#define MACA_DEBUG 0
#define MACA_RAW_MODE 0
#define USE_32KHZ_XTAL 0
#define USE_FORMATTED_STDIO 1
#define MACA_DEBUG 0
#define CONTIKI_MACA_RAW_MODE 0
#define USE_32KHZ_XTAL 0
#define BLOCKING_TX 0