Browse Source

Make sure leveled[] is defined for later use

pull/1/head
Scott Lahteine 7 years ago
parent
commit
e70b44dc0b
  1. 3
      Marlin/src/gcode/host/M114.cpp

3
Marlin/src/gcode/host/M114.cpp

@ -56,9 +56,10 @@
SERIAL_PROTOCOLPGM("Raw: "); SERIAL_PROTOCOLPGM("Raw: ");
report_xyz(current_position); report_xyz(current_position);
float leveled[XYZ] = { current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS] };
#if PLANNER_LEVELING #if PLANNER_LEVELING
SERIAL_PROTOCOLPGM("Leveled:"); SERIAL_PROTOCOLPGM("Leveled:");
float leveled[XYZ] = { current_position[X_AXIS], current_position[Y_AXIS], current_position[Z_AXIS] };
planner.apply_leveling(leveled); planner.apply_leveling(leveled);
report_xyz(leveled); report_xyz(leveled);

Loading…
Cancel
Save