]> cloudbase.mooo.com Git - z180-stamp.git/blob - stm32/debug.h
Disable all peripheral functions globally. Enable used functions when needed.
[z180-stamp.git] / stm32 / debug.h
1
2 #ifndef DEBUG_H_
3 #define DEBUG_H_
4
5 #ifdef DEBUG
6 #define DBG_P(lvl, ...) if (DEBUG>=lvl) fprintf( stderr, __VA_ARGS__ )
7 #else
8 #define DBG_P(lvl, ...)
9 #endif
10
11 #endif /* DEBUG_H_ */