Import of the contiki-2.x development code from the SICS internal CVS server

This commit is contained in:
adamdunkels 2006-06-17 22:41:10 +00:00
commit c9e808d638
671 changed files with 95332 additions and 0 deletions

20
cpu/avr/dev/debug.h Normal file
View 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__ */