Merge pull request #3278 from thinkyhead/rc_cleanup_m111_redo

Echo all debug levels in M111, default to DEBUG_NONE
This commit is contained in:
Scott Lahteine
2016-03-29 20:34:31 -07:00
4 changed files with 110 additions and 93 deletions

View File

@@ -587,7 +587,7 @@ float junction_deviation = 0.1;
dz = target[Z_AXIS] - position[Z_AXIS];
// DRYRUN ignores all temperature constraints and assures that the extruder is instantly satisfied
if (marlin_debug_flags & DEBUG_DRYRUN)
if (DEBUGGING(DRYRUN))
position[E_AXIS] = target[E_AXIS];
long de = target[E_AXIS] - position[E_AXIS];