From ee9bd66a68a1335cfd65265b941acf598ce6c7a8 Mon Sep 17 00:00:00 2001 From: Scott Lahteine Date: Wed, 20 Apr 2016 12:19:37 -0700 Subject: [PATCH] Add comments to debug bit flags --- Marlin/Marlin.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Marlin/Marlin.h b/Marlin/Marlin.h index 7c4096205c..cc08d724b9 100644 --- a/Marlin/Marlin.h +++ b/Marlin/Marlin.h @@ -233,12 +233,12 @@ void kill(const char*); */ enum DebugFlags { DEBUG_NONE = 0, - DEBUG_ECHO = _BV(0), - DEBUG_INFO = _BV(1), - DEBUG_ERRORS = _BV(2), - DEBUG_DRYRUN = _BV(3), - DEBUG_COMMUNICATION = _BV(4), - DEBUG_LEVELING = _BV(5) + DEBUG_ECHO = _BV(0), ///< Echo commands in order as they are processed + DEBUG_INFO = _BV(1), ///< Print messages for code that has debug output + DEBUG_ERRORS = _BV(2), ///< Not implemented + DEBUG_DRYRUN = _BV(3), ///< Ignore temperature setting and E movement commands + DEBUG_COMMUNICATION = _BV(4), ///< Not implemented + DEBUG_LEVELING = _BV(5) ///< Print detailed output for homing and leveling }; extern uint8_t marlin_debug_flags; #define DEBUGGING(F) (marlin_debug_flags & (DEBUG_## F))