Marlin_Firmware/Marlin/src/feature/bedlevel/mbl/mesh_bed_leveling.cpp

132 lines
4.5 KiB
C++
Raw Normal View History

/**
2016-03-24 18:01:20 +00:00
* Marlin 3D Printer Firmware
2020-02-03 08:00:57 -06:00
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
2016-03-24 18:01:20 +00:00
*
* Based on Sprinter and grbl.
2019-06-27 23:57:50 -05:00
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
2016-03-24 18:01:20 +00: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
2020-07-23 05:20:14 +02:00
* along with this program. If not, see <https://www.gnu.org/licenses/>.
2016-03-24 18:01:20 +00:00
*
*/
2017-09-08 15:35:25 -05:00
#include "../../../inc/MarlinConfig.h"
2015-03-15 10:43:26 +01:00
#if ENABLED(MESH_BED_LEVELING)
2015-03-15 10:43:26 +01:00
2019-09-29 04:25:39 -05:00
#include "../bedlevel.h"
2017-09-06 06:28:32 -05:00
2017-09-08 15:35:25 -05:00
#include "../../../module/motion.h"
2019-07-28 01:29:03 -05:00
2019-07-28 05:44:05 +02:00
#if ENABLED(EXTENSIBLE_UI)
2020-03-13 16:29:29 -05:00
#include "../../../lcd/extui/ui_api.h"
2019-07-28 05:44:05 +02:00
#endif
mesh_bed_leveling bedlevel;
2015-03-15 10:43:26 +01:00
float mesh_bed_leveling::z_offset,
2017-04-12 17:24:05 -05:00
mesh_bed_leveling::z_values[GRID_MAX_POINTS_X][GRID_MAX_POINTS_Y],
mesh_bed_leveling::index_to_xpos[GRID_MAX_POINTS_X],
mesh_bed_leveling::index_to_ypos[GRID_MAX_POINTS_Y];
mesh_bed_leveling::mesh_bed_leveling() {
2020-03-13 23:18:16 -05:00
LOOP_L_N(i, GRID_MAX_POINTS_X)
index_to_xpos[i] = MESH_MIN_X + i * (MESH_X_DIST);
2020-03-13 23:18:16 -05:00
LOOP_L_N(i, GRID_MAX_POINTS_Y)
index_to_ypos[i] = MESH_MIN_Y + i * (MESH_Y_DIST);
reset();
}
void mesh_bed_leveling::reset() {
z_offset = 0;
2016-10-22 10:07:18 -05:00
ZERO(z_values);
#if ENABLED(EXTENSIBLE_UI)
2020-03-13 23:18:16 -05:00
GRID_LOOP(x, y) ExtUI::onMeshUpdate(x, y, 0);
#endif
}
2015-03-15 23:18:11 +01:00
2017-11-29 15:30:42 -06:00
#if IS_CARTESIAN && DISABLED(SEGMENT_LEVELED_MOVES)
/**
* Prepare a mesh-leveled linear move in a Cartesian setup,
* splitting the move where it crosses mesh borders.
*/
void mesh_bed_leveling::line_to_destination(const_feedRate_t scaled_fr_mm_s, uint8_t x_splits, uint8_t y_splits) {
2017-12-01 21:43:44 -06:00
// Get current and destination cells for this line
2019-09-29 04:25:39 -05:00
xy_int8_t scel = cell_indexes(current_position), ecel = cell_indexes(destination);
2021-04-01 18:12:00 -06:00
NOMORE(scel.x, GRID_MAX_CELLS_X - 1);
NOMORE(scel.y, GRID_MAX_CELLS_Y - 1);
NOMORE(ecel.x, GRID_MAX_CELLS_X - 1);
NOMORE(ecel.y, GRID_MAX_CELLS_Y - 1);
2017-11-29 15:30:42 -06:00
2017-12-01 21:43:44 -06:00
// Start and end in the same cell? No split needed.
2019-09-29 04:25:39 -05:00
if (scel == ecel) {
current_position = destination;
line_to_current_position(scaled_fr_mm_s);
2017-11-29 15:30:42 -06:00
return;
}
2019-09-29 04:25:39 -05:00
#define MBL_SEGMENT_END(A) (current_position.A + (destination.A - current_position.A) * normalized_dist)
2017-11-29 15:30:42 -06:00
2019-09-29 04:25:39 -05:00
float normalized_dist;
xyze_pos_t dest;
const int8_t gcx = _MAX(scel.x, ecel.x), gcy = _MAX(scel.y, ecel.y);
2017-12-01 21:43:44 -06:00
// Crosses on the X and not already split on this X?
// The x_splits flags are insurance against rounding errors.
2019-09-29 04:25:39 -05:00
if (ecel.x != scel.x && TEST(x_splits, gcx)) {
2017-12-01 21:43:44 -06:00
// Split on the X grid line
CBI(x_splits, gcx);
2019-09-29 04:25:39 -05:00
dest = destination;
destination.x = index_to_xpos[gcx];
normalized_dist = (destination.x - current_position.x) / (dest.x - current_position.x);
destination.y = MBL_SEGMENT_END(y);
2017-11-29 15:30:42 -06:00
}
2017-12-01 21:43:44 -06:00
// Crosses on the Y and not already split on this Y?
2019-09-29 04:25:39 -05:00
else if (ecel.y != scel.y && TEST(y_splits, gcy)) {
2017-12-01 21:43:44 -06:00
// Split on the Y grid line
CBI(y_splits, gcy);
2019-09-29 04:25:39 -05:00
dest = destination;
destination.y = index_to_ypos[gcy];
normalized_dist = (destination.y - current_position.y) / (dest.y - current_position.y);
destination.x = MBL_SEGMENT_END(x);
2017-11-29 15:30:42 -06:00
}
else {
2017-12-01 21:43:44 -06:00
// Must already have been split on these border(s)
// This should be a rare case.
2019-09-29 04:25:39 -05:00
current_position = destination;
line_to_current_position(scaled_fr_mm_s);
2017-11-29 15:30:42 -06:00
return;
}
2019-09-29 04:25:39 -05:00
destination.z = MBL_SEGMENT_END(z);
destination.e = MBL_SEGMENT_END(e);
2017-11-29 15:30:42 -06:00
// Do the split and look for more borders
2019-09-26 01:28:09 -05:00
line_to_destination(scaled_fr_mm_s, x_splits, y_splits);
2017-11-29 15:30:42 -06:00
// Restore destination from stack
2019-09-29 04:25:39 -05:00
destination = dest;
2019-09-26 01:28:09 -05:00
line_to_destination(scaled_fr_mm_s, x_splits, y_splits);
}
2017-11-29 15:30:42 -06:00
#endif // IS_CARTESIAN && !SEGMENT_LEVELED_MOVES
2018-01-06 20:50:21 -06:00
void mesh_bed_leveling::report_mesh() {
SERIAL_ECHOPAIR_F(STRINGIFY(GRID_MAX_POINTS_X) "x" STRINGIFY(GRID_MAX_POINTS_Y) " mesh. Z offset: ", z_offset, 5);
SERIAL_ECHOLNPGM("\nMeasured points:");
print_2d_array(GRID_MAX_POINTS_X, GRID_MAX_POINTS_Y, 5, z_values[0]);
2017-09-08 15:35:25 -05:00
}
2017-05-09 12:35:43 -05:00
#endif // MESH_BED_LEVELING