summaryrefslogtreecommitdiff
path: root/avr/debug.h
blob: 39ae55cd92f09e8a5c9d8a84ae6d40307a56b453 (plain)
1
2
3
4
5
6
7
8
9
10
11
#ifndef DEBUG_H_
#define DEBUG_H_

#ifdef DEBUG
#define DBG_P(lvl, ...) if (DEBUG>=lvl) fprintf_P( stderr,  __VA_ARGS__ )
#else
#define DBG_P(lvl, ...)
#endif

#endif /* DEBUG_H_ */