Browse Source

Add DEBUG_ALL enum

Scott Lahteine 8 years ago
parent
commit
a255945f29
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      Marlin/enum.h

+ 2
- 1
Marlin/enum.h View File

70
   DEBUG_ERRORS        = _BV(2), ///< Not implemented
70
   DEBUG_ERRORS        = _BV(2), ///< Not implemented
71
   DEBUG_DRYRUN        = _BV(3), ///< Ignore temperature setting and E movement commands
71
   DEBUG_DRYRUN        = _BV(3), ///< Ignore temperature setting and E movement commands
72
   DEBUG_COMMUNICATION = _BV(4), ///< Not implemented
72
   DEBUG_COMMUNICATION = _BV(4), ///< Not implemented
73
-  DEBUG_LEVELING      = _BV(5)  ///< Print detailed output for homing and leveling
73
+  DEBUG_LEVELING      = _BV(5), ///< Print detailed output for homing and leveling
74
+  DEBUG_ALL           = 0xFF
74
 };
75
 };
75
 
76
 
76
 enum EndstopEnum {
77
 enum EndstopEnum {

Loading…
Cancel
Save