UBL patch from Bob-the-Kuhn

This commit is contained in:
Scott Lahteine
2017-03-20 15:38:25 -05:00
parent 100c9bc52d
commit cc3204509c
2 changed files with 16 additions and 3 deletions

1
Marlin/enum.h Normal file → Executable file
View File

@ -75,6 +75,7 @@ enum DebugFlags {
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
DEBUG_MESH_ADJUST = _BV(6), ///< UBL bed leveling
DEBUG_ALL = 0xFF
};