X-Git-Url: http://cloudbase.mooo.com/gitweb/z180-stamp.git/blobdiff_plain/9b6b4b31e8cb284ad6a68fe16d458e36bbfb46fa..4bc81323e51ac138e733c14eeb6f283ae706e904:/avr/debug.h diff --git a/avr/debug.h b/avr/debug.h index ea67a99..1815166 100644 --- a/avr/debug.h +++ b/avr/debug.h @@ -2,13 +2,33 @@ #ifndef DEBUG_H_ #define DEBUG_H_ +#include "common.h" #include +#ifdef DEBUG +#define _DEBUG 1 +#else +#define _DEBUG 0 +#endif + +#define debug_cond(cond, fmt, args...) \ + do { \ + if (cond) \ + printf_P(PSTR(fmt), ##args); \ + } while (0) + +#define debug(fmt, args...) \ + debug_cond(_DEBUG, fmt, ##args) + + +#if 1 #ifdef DEBUG #define DBG_P(lvl, format, ...) if (DEBUG>=lvl) \ fprintf_P( stdout, PSTR(format), ##__VA_ARGS__ ) #else #define DBG_P(lvl, ...) #endif +#endif /* 0 */ #endif /* DEBUG_H_ */ +