summaryrefslogtreecommitdiff
path: root/avr/debug.h
diff options
context:
space:
mode:
authorLeo C2014-07-27 23:23:07 +0200
committerLeo C2014-07-27 23:23:07 +0200
commit9b6b4b31e8cb284ad6a68fe16d458e36bbfb46fa (patch)
tree545e7cd4701667adcd0ecbd9a896fc59e3f4a413 /avr/debug.h
parent762a42ef835d3692bf0d9bea19f5cfd9cb673a33 (diff)
downloadz180-stamp-9b6b4b31e8cb284ad6a68fe16d458e36bbfb46fa.zip
First real hardware test.
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