Tool-change debug option

This commit is contained in:
Scott Lahteine
2020-07-14 17:58:37 -05:00
committed by Scott Lahteine
parent 3513ea7ae1
commit b40440cf38
5 changed files with 145 additions and 161 deletions

View File

@ -52,6 +52,7 @@
#undef DEBUG_POS
#undef DEBUG_XYZ
#undef DEBUG_DELAY
#undef DEBUG_SYNCHRONIZE
#if DEBUG_OUT
@ -83,6 +84,7 @@
#define DEBUG_POS SERIAL_POS
#define DEBUG_XYZ SERIAL_XYZ
#define DEBUG_DELAY(ms) serial_delay(ms)
#define DEBUG_SYNCHRONIZE() planner.synchronize()
#else
@ -112,6 +114,7 @@
#define DEBUG_POS(...) NOOP
#define DEBUG_XYZ(...) NOOP
#define DEBUG_DELAY(...) NOOP
#define DEBUG_SYNCHRONIZE() NOOP
#endif