Made debugging output easier configurable

This commit is contained in:
adamdunkels 2006-10-06 07:57:14 +00:00
parent 60c7228675
commit 56fe6ec4a9
2 changed files with 14 additions and 4 deletions

View file

@ -28,7 +28,7 @@
* *
* This file is part of the Contiki operating system. * This file is part of the Contiki operating system.
* *
* @(#)$Id: tr1001-gcr.c,v 1.1 2006/10/05 09:20:00 adamdunkels Exp $ * @(#)$Id: tr1001-gcr.c,v 1.2 2006/10/06 07:57:14 adamdunkels Exp $
*/ */
/** /**
* \addtogroup esb * \addtogroup esb
@ -131,9 +131,14 @@ static struct timer rxtimer;
static unsigned short tmp_sstrength, sstrength; static unsigned short tmp_sstrength, sstrength;
#define DEBUG 0
#if DEBUG
#include <stdio.h> #include <stdio.h>
/* #define LOG(...) /\*printf(__VA_ARGS__)*\/ */
#define LOG(...) printf(__VA_ARGS__) #define LOG(...) printf(__VA_ARGS__)
#else
#define LOG(...)
#endif
#define GCRLOG(...) /* printf(__VA_ARGS__) */ #define GCRLOG(...) /* printf(__VA_ARGS__) */

View file

@ -28,7 +28,7 @@
* *
* This file is part of the Contiki operating system. * This file is part of the Contiki operating system.
* *
* @(#)$Id: tr1001.c,v 1.2 2006/08/17 08:27:54 nifi Exp $ * @(#)$Id: tr1001.c,v 1.3 2006/10/06 07:57:14 adamdunkels Exp $
*/ */
/** /**
* \addtogroup esb * \addtogroup esb
@ -130,8 +130,13 @@ static struct timer rxtimer;
static unsigned short tmp_sstrength, sstrength; static unsigned short tmp_sstrength, sstrength;
#define DEBUG 0
#if DEBUG
#include <stdio.h> #include <stdio.h>
#define LOG(...) /*printf(__VA_ARGS__)*/ #define LOG(...) printf(__VA_ARGS__)
#else
#define LOG(...)
#endif
/*---------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/
#if TR1001_STATISTICS #if TR1001_STATISTICS