summaryrefslogtreecommitdiff
path: root/controller/fw/src/simulation.h
diff options
context:
space:
mode:
authorjaseg <git-bigdata-wsl-arch@jaseg.de>2020-04-17 17:59:08 +0200
committerjaseg <git-bigdata-wsl-arch@jaseg.de>2020-04-17 17:59:08 +0200
commit87ae7dfcb35d9a55950eecc2116d13d73b2b9ece (patch)
tree090946c28eb7b9d3028844bf4e0dcc01ddb29664 /controller/fw/src/simulation.h
parente505627adad7510673f983cd158016342aa1bdfc (diff)
downloadmaster-thesis-87ae7dfcb35d9a55950eecc2116d13d73b2b9ece.tar.gz
master-thesis-87ae7dfcb35d9a55950eecc2116d13d73b2b9ece.tar.bz2
master-thesis-87ae7dfcb35d9a55950eecc2116d13d73b2b9ece.zip
fw simulator: WIP
Diffstat (limited to 'controller/fw/src/simulation.h')
-rw-r--r--controller/fw/src/simulation.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/controller/fw/src/simulation.h b/controller/fw/src/simulation.h
index e813de7..2734e5b 100644
--- a/controller/fw/src/simulation.h
+++ b/controller/fw/src/simulation.h
@@ -3,7 +3,7 @@
#ifdef SIMULATION
#include <stdio.h>
-#define DEBUG_PRINTN(...) fprintf(stderr, __VA_ARGS__)
+#define DEBUG_PRINTN(...) printf(__VA_ARGS__)
#define DEBUG_PRINTNF(fmt, ...) DEBUG_PRINTN("%s:%d: " fmt, __FILE__, __LINE__, ##__VA_ARGS__)
#define DEBUG_PRINT(fmt, ...) DEBUG_PRINTNF(fmt "\n", ##__VA_ARGS__)
#else