Added optional planner logging
This commit is contained in:
parent
e9bfca5870
commit
a485a19052
@ -567,6 +567,17 @@ void Planner::check_axes_activity() {
|
||||
dy = target[Y_AXIS] - position[Y_AXIS],
|
||||
dz = target[Z_AXIS] - position[Z_AXIS];
|
||||
|
||||
/*
|
||||
SERIAL_ECHO_START;
|
||||
SERIAL_ECHOPAIR("Planner X:", x);
|
||||
SERIAL_ECHOPAIR(" (", dx);
|
||||
SERIAL_ECHOPAIR(") Y:", y);
|
||||
SERIAL_ECHOPAIR(" (", dy);
|
||||
SERIAL_ECHOPAIR(") Z:", z);
|
||||
SERIAL_ECHOPAIR(" (", dz);
|
||||
SERIAL_ECHOLNPGM(")");
|
||||
//*/
|
||||
|
||||
// DRYRUN ignores all temperature constraints and assures that the extruder is instantly satisfied
|
||||
if (DEBUGGING(DRYRUN))
|
||||
position[E_AXIS] = target[E_AXIS];
|
||||
|
Loading…
Reference in New Issue
Block a user