summaryrefslogtreecommitdiff
path: root/avr/debug.h
diff options
context:
space:
mode:
Diffstat (limited to 'avr/debug.h')
-rw-r--r--avr/debug.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/avr/debug.h b/avr/debug.h
index c341301..ea67a99 100644
--- a/avr/debug.h
+++ b/avr/debug.h
@@ -6,7 +6,7 @@
#ifdef DEBUG
#define DBG_P(lvl, format, ...) if (DEBUG>=lvl) \
- fprintf_P( stderr, PSTR(format), ##__VA_ARGS__ )
+ fprintf_P( stdout, PSTR(format), ##__VA_ARGS__ )
#else
#define DBG_P(lvl, ...)
#endif