#ifndef _DEBUG_H_ #define _DEBUG_H_ #ifdef DEBUG #include #define debug(fmt, ...) printf_P(PSTR(fmt), ##__VA_ARGS__) #else #define debug(fmt, ...) #endif #endif /* _DEBUG_H_ */