Import of the contiki-2.x development code from the SICS internal CVS server
This commit is contained in:
commit
c9e808d638
671 changed files with 95332 additions and 0 deletions
20
cpu/avr/dev/debug.h
Normal file
20
cpu/avr/dev/debug.h
Normal file
|
@ -0,0 +1,20 @@
|
|||
#ifndef __DEBUG_H__
|
||||
#define __DEBUG_H__
|
||||
|
||||
#if 0
|
||||
#define debug_print(x)
|
||||
#define debug_print8(x)
|
||||
|
||||
#else
|
||||
|
||||
#include "avr/pgmspace.h"
|
||||
|
||||
void debug_print(char *str);
|
||||
|
||||
void debug_print8(unsigned char v);
|
||||
void debug_print16(unsigned short v);
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
#endif /* __DEBUG_H__ */
|
Loading…
Add table
Add a link
Reference in a new issue