Contiki 3.x
debug.h
1 #ifndef DEBUG_H_
2 #define DEBUG_H_
3 
4 #if 0
5 #define debug_print(x)
6 #define debug_print8(x)
7 
8 #else
9 
10 #include "avr/pgmspace.h"
11 
12 void debug_print(char *str);
13 
14 void debug_print8(unsigned char v);
15 void debug_print16(unsigned short v);
16 #endif
17 
18 
19 
20 #endif /* DEBUG_H_ */