summaryrefslogtreecommitdiff
path: root/controller/fw/src/simulation.h
diff options
context:
space:
mode:
Diffstat (limited to 'controller/fw/src/simulation.h')
-rw-r--r--controller/fw/src/simulation.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/controller/fw/src/simulation.h b/controller/fw/src/simulation.h
deleted file mode 100644
index 2734e5b..0000000
--- a/controller/fw/src/simulation.h
+++ /dev/null
@@ -1,14 +0,0 @@
-#ifndef __SIMULATION_H__
-#define __SIMULATION_H__
-
-#ifdef SIMULATION
-#include <stdio.h>
-#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
-#define DEBUG_PRINT(...) ((void)0)
-#define DEBUG_PRINTN(...) ((void)0)
-#endif
-
-#endif /* __SIMULATION_H__ */