Files
espurna/code/src/debug.h
2016-10-06 11:53:58 +02:00

6 lines
118 B
C

#ifdef DEBUG_PORT
#define DEBUG_MSG(...) DEBUG_PORT.printf( __VA_ARGS__ )
#else
#define DEBUG_MSG(...)
#endif