diff options
author | lonkaars <loek@pipeframe.xyz> | 2022-05-27 12:53:42 +0200 |
---|---|---|
committer | lonkaars <loek@pipeframe.xyz> | 2022-05-27 12:53:42 +0200 |
commit | 4c4d045329c4a149bae0b53952c39c14243e1870 (patch) | |
tree | 18ce1a31adb20421635738d627b46150b1fb9fea /robot/sim.h | |
parent | 05318790dcbd6714a2adb3532e902a56a6638ca0 (diff) |
throw error on noisy serial channel
Diffstat (limited to 'robot/sim.h')
-rw-r--r-- | robot/sim.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/robot/sim.h b/robot/sim.h index 76b57f8..aa587cd 100644 --- a/robot/sim.h +++ b/robot/sim.h @@ -54,6 +54,12 @@ extern bool g_w2_sim_headless; COL_CYN name COL_RST "(" COL_YEL fmt COL_RST ")\n", ##__VA_ARGS__); } #define simwarn(message, ...) if (DBG_ENABLE_SIMWARN) { simprintf(COL_YEL "[WARN] " COL_RST message, ##__VA_ARGS__); } #define siminfo(message, ...) if (DBG_ENABLE_SIMINFO) { simprintf(COL_MAG "[INFO] " COL_RST message, ##__VA_ARGS__); } +#ifdef W2_HOST_LINUX +#define PTR_FMT "0x%016lx" +#endif +#ifdef W2_HOST_WIN32 +#define PTR_FMT "0x%016llx" +#endif #define BUTTON_A 0 #define BUTTON_B 1 |