Make sure leveled[]
is enabled for use
This commit is contained in:
parent
be67acbd48
commit
95590adf07
1 changed files with 2 additions and 1 deletions
|
@ -8509,9 +8509,10 @@ void report_current_position() {
|
||||||
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…
Add table
Reference in a new issue