Add DEBUGGING macro

This commit is contained in:
Scott Lahteine
2016-03-29 19:50:01 -07:00
parent 4402760739
commit 05765fb570
3 changed files with 70 additions and 69 deletions

View File

@@ -591,7 +591,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];