2017-09-06 13:28:31 +02:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
2019-06-28 06:57:50 +02:00
|
|
|
* Copyright (c) 2019 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
2017-09-06 13:28:31 +02:00
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
2019-06-28 06:57:50 +02:00
|
|
|
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
|
2017-09-06 13:28:31 +02:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2017-09-08 22:35:25 +02:00
|
|
|
/**
|
|
|
|
* G29.cpp - Mesh Bed Leveling
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "../../../inc/MarlinConfig.h"
|
|
|
|
|
|
|
|
#if ENABLED(MESH_BED_LEVELING)
|
|
|
|
|
|
|
|
#include "../../../feature/bedlevel/bedlevel.h"
|
2017-09-08 05:33:16 +02:00
|
|
|
|
2017-09-08 22:35:25 +02:00
|
|
|
#include "../../gcode.h"
|
|
|
|
#include "../../queue.h"
|
|
|
|
|
|
|
|
#include "../../../libs/buzzer.h"
|
|
|
|
#include "../../../lcd/ultralcd.h"
|
|
|
|
#include "../../../module/motion.h"
|
|
|
|
#include "../../../module/stepper.h"
|
2017-09-06 13:28:31 +02:00
|
|
|
|
|
|
|
// Save 130 bytes with non-duplication of PSTR
|
2018-11-29 23:58:58 +01:00
|
|
|
inline void echo_not_entered(const char c) { SERIAL_CHAR(c); SERIAL_ECHOLNPGM(" not entered."); }
|
2017-09-06 13:28:31 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* G29: Mesh-based Z probe, probes a grid and produces a
|
|
|
|
* mesh to compensate for variable bed height
|
|
|
|
*
|
|
|
|
* Parameters With MESH_BED_LEVELING:
|
|
|
|
*
|
2018-11-19 16:08:15 +01:00
|
|
|
* S0 Report the current mesh values
|
2017-09-06 13:28:31 +02:00
|
|
|
* S1 Start probing mesh points
|
|
|
|
* S2 Probe the next mesh point
|
2018-11-19 16:08:15 +01:00
|
|
|
* S3 In Jn Zn.nn Manually modify a single point
|
2017-09-06 13:28:31 +02:00
|
|
|
* S4 Zn.nn Set z offset. Positive away from bed, negative closer to bed.
|
|
|
|
* S5 Reset and disable mesh
|
|
|
|
*
|
|
|
|
*/
|
2017-09-08 22:35:25 +02:00
|
|
|
void GcodeSuite::G29() {
|
2017-09-06 13:28:31 +02:00
|
|
|
|
|
|
|
static int mbl_probe_index = -1;
|
|
|
|
#if HAS_SOFTWARE_ENDSTOPS
|
2019-03-13 11:48:36 +01:00
|
|
|
static bool saved_soft_endstops_state;
|
2017-09-06 13:28:31 +02:00
|
|
|
#endif
|
|
|
|
|
2018-04-20 08:14:50 +02:00
|
|
|
MeshLevelingState state = (MeshLevelingState)parser.byteval('S', (int8_t)MeshReport);
|
2017-09-06 13:28:31 +02:00
|
|
|
if (!WITHIN(state, 0, 5)) {
|
2018-11-29 23:58:58 +01:00
|
|
|
SERIAL_ECHOLNPGM("S out of range (0-5).");
|
2017-09-06 13:28:31 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2018-11-19 16:08:15 +01:00
|
|
|
int8_t ix, iy;
|
2017-09-06 13:28:31 +02:00
|
|
|
|
|
|
|
switch (state) {
|
|
|
|
case MeshReport:
|
2018-11-29 23:58:58 +01:00
|
|
|
SERIAL_ECHOPGM("Mesh Bed Leveling ");
|
2017-09-06 13:28:31 +02:00
|
|
|
if (leveling_is_valid()) {
|
2018-11-13 00:04:00 +01:00
|
|
|
serialprintln_onoff(planner.leveling_active);
|
2018-01-07 03:50:21 +01:00
|
|
|
mbl.report_mesh();
|
2017-09-06 13:28:31 +02:00
|
|
|
}
|
|
|
|
else
|
2018-11-29 23:58:58 +01:00
|
|
|
SERIAL_ECHOLNPGM("has no data.");
|
2017-09-06 13:28:31 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case MeshStart:
|
|
|
|
mbl.reset();
|
|
|
|
mbl_probe_index = 0;
|
2018-11-11 19:16:24 +01:00
|
|
|
if (!ui.wait_for_bl_move) {
|
2019-06-19 07:00:19 +02:00
|
|
|
queue.inject_P(PSTR("G28\nG29 S2"));
|
2018-04-20 08:14:50 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
state = MeshNext;
|
2017-09-06 13:28:31 +02:00
|
|
|
|
|
|
|
case MeshNext:
|
|
|
|
if (mbl_probe_index < 0) {
|
2018-11-29 23:58:58 +01:00
|
|
|
SERIAL_ECHOLNPGM("Start mesh probing with \"G29 S1\" first.");
|
2017-09-06 13:28:31 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
// For each G29 S2...
|
|
|
|
if (mbl_probe_index == 0) {
|
|
|
|
#if HAS_SOFTWARE_ENDSTOPS
|
|
|
|
// For the initial G29 S2 save software endstop state
|
2019-03-13 11:48:36 +01:00
|
|
|
saved_soft_endstops_state = soft_endstops_enabled;
|
2017-09-06 13:28:31 +02:00
|
|
|
#endif
|
2018-04-13 05:36:38 +02:00
|
|
|
// Move close to the bed before the first point
|
2018-04-18 03:32:56 +02:00
|
|
|
do_blocking_move_to_z(0);
|
2017-09-06 13:28:31 +02:00
|
|
|
}
|
|
|
|
else {
|
2018-04-20 08:14:50 +02:00
|
|
|
// Save Z for the previous mesh position
|
2017-09-06 13:28:31 +02:00
|
|
|
mbl.set_zigzag_z(mbl_probe_index - 1, current_position[Z_AXIS]);
|
|
|
|
#if HAS_SOFTWARE_ENDSTOPS
|
2019-03-13 11:48:36 +01:00
|
|
|
soft_endstops_enabled = saved_soft_endstops_state;
|
2017-09-06 13:28:31 +02:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
// If there's another point to sample, move there with optional lift.
|
|
|
|
if (mbl_probe_index < GRID_MAX_POINTS) {
|
|
|
|
#if HAS_SOFTWARE_ENDSTOPS
|
|
|
|
// Disable software endstops to allow manual adjustment
|
|
|
|
// If G29 is not completed, they will not be re-enabled
|
|
|
|
soft_endstops_enabled = false;
|
|
|
|
#endif
|
|
|
|
|
2018-11-19 16:08:15 +01:00
|
|
|
mbl.zigzag(mbl_probe_index++, ix, iy);
|
|
|
|
_manual_goto_xy(mbl.index_to_xpos[ix], mbl.index_to_ypos[iy]);
|
2017-09-06 13:28:31 +02:00
|
|
|
}
|
|
|
|
else {
|
|
|
|
// One last "return to the bed" (as originally coded) at completion
|
2018-04-18 03:32:56 +02:00
|
|
|
current_position[Z_AXIS] = MANUAL_PROBE_HEIGHT;
|
2017-09-06 13:28:31 +02:00
|
|
|
line_to_current_position();
|
2018-05-12 08:38:02 +02:00
|
|
|
planner.synchronize();
|
2017-09-06 13:28:31 +02:00
|
|
|
|
|
|
|
// After recording the last point, activate home and activate
|
|
|
|
mbl_probe_index = -1;
|
2018-11-29 23:58:58 +01:00
|
|
|
SERIAL_ECHOLNPGM("Mesh probing done.");
|
2017-09-06 13:28:31 +02:00
|
|
|
BUZZ(100, 659);
|
|
|
|
BUZZ(100, 698);
|
2017-11-27 19:57:55 +01:00
|
|
|
|
2019-05-26 22:29:54 +02:00
|
|
|
home_all_axes();
|
2017-11-27 09:12:29 +01:00
|
|
|
set_bed_leveling_enabled(true);
|
2017-11-27 19:57:55 +01:00
|
|
|
|
2017-11-27 09:12:29 +01:00
|
|
|
#if ENABLED(MESH_G28_REST_ORIGIN)
|
2018-04-18 03:32:56 +02:00
|
|
|
current_position[Z_AXIS] = 0;
|
2017-11-27 09:12:29 +01:00
|
|
|
set_destination_from_current();
|
|
|
|
buffer_line_to_destination(homing_feedrate(Z_AXIS));
|
2018-05-12 08:38:02 +02:00
|
|
|
planner.synchronize();
|
2017-11-27 09:12:29 +01:00
|
|
|
#endif
|
2017-11-27 19:57:55 +01:00
|
|
|
|
|
|
|
#if ENABLED(LCD_BED_LEVELING)
|
2018-11-11 19:16:24 +01:00
|
|
|
ui.wait_for_bl_move = false;
|
2017-11-27 19:57:55 +01:00
|
|
|
#endif
|
2017-09-06 13:28:31 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case MeshSet:
|
2018-11-19 16:08:15 +01:00
|
|
|
if (parser.seenval('I')) {
|
|
|
|
ix = parser.value_int();
|
|
|
|
if (!WITHIN(ix, 0, GRID_MAX_POINTS_X - 1)) {
|
2018-11-29 23:58:58 +01:00
|
|
|
SERIAL_ECHOPAIR("I out of range (0-", int(GRID_MAX_POINTS_X - 1));
|
|
|
|
SERIAL_ECHOLNPGM(")");
|
2017-09-06 13:28:31 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2018-11-10 08:32:29 +01:00
|
|
|
else
|
2018-11-19 16:08:15 +01:00
|
|
|
return echo_not_entered('J');
|
2017-09-06 13:28:31 +02:00
|
|
|
|
2018-11-19 16:08:15 +01:00
|
|
|
if (parser.seenval('J')) {
|
|
|
|
iy = parser.value_int();
|
|
|
|
if (!WITHIN(iy, 0, GRID_MAX_POINTS_Y - 1)) {
|
2018-11-29 23:58:58 +01:00
|
|
|
SERIAL_ECHOPAIR("J out of range (0-", int(GRID_MAX_POINTS_Y - 1));
|
|
|
|
SERIAL_ECHOLNPGM(")");
|
2017-09-06 13:28:31 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2018-11-10 08:32:29 +01:00
|
|
|
else
|
2018-11-19 16:08:15 +01:00
|
|
|
return echo_not_entered('J');
|
2017-09-06 13:28:31 +02:00
|
|
|
|
2019-03-13 06:45:52 +01:00
|
|
|
if (parser.seenval('Z')) {
|
2018-11-19 16:08:15 +01:00
|
|
|
mbl.z_values[ix][iy] = parser.value_linear_units();
|
2019-03-13 06:45:52 +01:00
|
|
|
#if ENABLED(EXTENSIBLE_UI)
|
|
|
|
ExtUI::onMeshUpdate(ix, iy, mbl.z_values[ix][iy]);
|
|
|
|
#endif
|
|
|
|
}
|
2018-11-10 08:32:29 +01:00
|
|
|
else
|
|
|
|
return echo_not_entered('Z');
|
2017-09-06 13:28:31 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case MeshSetZOffset:
|
2017-11-27 09:12:29 +01:00
|
|
|
if (parser.seenval('Z'))
|
2017-09-06 13:28:31 +02:00
|
|
|
mbl.z_offset = parser.value_linear_units();
|
2018-11-10 08:32:29 +01:00
|
|
|
else
|
|
|
|
return echo_not_entered('Z');
|
2017-09-06 13:28:31 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case MeshReset:
|
|
|
|
reset_bed_level();
|
|
|
|
break;
|
|
|
|
|
|
|
|
} // switch(state)
|
|
|
|
|
2018-04-20 08:14:50 +02:00
|
|
|
if (state == MeshNext) {
|
2018-11-29 23:58:58 +01:00
|
|
|
SERIAL_ECHOPAIR("MBL G29 point ", MIN(mbl_probe_index, GRID_MAX_POINTS));
|
|
|
|
SERIAL_ECHOLNPAIR(" of ", int(GRID_MAX_POINTS));
|
2017-11-27 09:12:29 +01:00
|
|
|
}
|
|
|
|
|
2017-09-06 13:28:31 +02:00
|
|
|
report_current_position();
|
|
|
|
}
|
2017-09-08 22:35:25 +02:00
|
|
|
|
|
|
|
#endif // MESH_BED_LEVELING
|