From a255945f29406890e5c17b652127f75cbe885605 Mon Sep 17 00:00:00 2001 From: Scott Lahteine Date: Sat, 27 Aug 2016 19:37:31 -0500 Subject: [PATCH] Add DEBUG_ALL enum --- Marlin/enum.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Marlin/enum.h b/Marlin/enum.h index a51d208aee..ded1be6ec7 100644 --- a/Marlin/enum.h +++ b/Marlin/enum.h @@ -70,7 +70,8 @@ enum DebugFlags { 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 + DEBUG_LEVELING = _BV(5), ///< Print detailed output for homing and leveling + DEBUG_ALL = 0xFF }; enum EndstopEnum {