2016-03-25 07:19:46 +01:00
|
|
|
/**
|
2016-03-24 19:01:20 +01:00
|
|
|
* Marlin 3D Printer Firmware
|
|
|
|
* Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
|
|
|
* Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2015-03-15 10:43:26 +01:00
|
|
|
#include "Marlin.h"
|
|
|
|
|
2015-07-31 07:21:18 +02:00
|
|
|
#if ENABLED(MESH_BED_LEVELING)
|
2015-03-15 10:43:26 +01:00
|
|
|
|
2016-03-13 07:38:55 +01:00
|
|
|
#define MESH_X_DIST ((MESH_MAX_X - (MESH_MIN_X))/(MESH_NUM_X_POINTS - 1))
|
|
|
|
#define MESH_Y_DIST ((MESH_MAX_Y - (MESH_MIN_Y))/(MESH_NUM_Y_POINTS - 1))
|
2015-03-15 10:43:26 +01:00
|
|
|
|
2015-03-26 04:36:24 +01:00
|
|
|
class mesh_bed_leveling {
|
|
|
|
public:
|
2016-04-13 10:25:17 +02:00
|
|
|
bool active;
|
2016-03-24 22:16:09 +01:00
|
|
|
float z_offset;
|
2015-03-15 10:43:26 +01:00
|
|
|
float z_values[MESH_NUM_Y_POINTS][MESH_NUM_X_POINTS];
|
2015-10-03 08:08:58 +02:00
|
|
|
|
2015-03-15 23:18:11 +01:00
|
|
|
mesh_bed_leveling();
|
2015-10-03 08:08:58 +02:00
|
|
|
|
2015-03-15 23:18:11 +01:00
|
|
|
void reset();
|
2015-10-03 08:08:58 +02:00
|
|
|
|
2016-03-15 09:10:57 +01:00
|
|
|
float get_x(int i) { return MESH_MIN_X + (MESH_X_DIST) * i; }
|
|
|
|
float get_y(int i) { return MESH_MIN_Y + (MESH_Y_DIST) * i; }
|
2015-03-15 10:43:26 +01:00
|
|
|
void set_z(int ix, int iy, float z) { z_values[iy][ix] = z; }
|
2015-10-03 08:08:58 +02:00
|
|
|
|
2016-04-13 11:37:41 +02:00
|
|
|
inline void zigzag(int index, int &ix, int &iy) {
|
|
|
|
ix = index % (MESH_NUM_X_POINTS);
|
|
|
|
iy = index / (MESH_NUM_X_POINTS);
|
|
|
|
if (iy & 1) ix = (MESH_NUM_X_POINTS - 1) - ix; // Zig zag
|
|
|
|
}
|
|
|
|
|
|
|
|
void set_zigzag_z(int index, float z) {
|
|
|
|
int ix, iy;
|
|
|
|
zigzag(index, ix, iy);
|
|
|
|
set_z(ix, iy, z);
|
|
|
|
}
|
|
|
|
|
2015-03-15 10:43:26 +01:00
|
|
|
int select_x_index(float x) {
|
2015-03-26 04:36:24 +01:00
|
|
|
int i = 1;
|
2015-10-03 08:08:58 +02:00
|
|
|
while (x > get_x(i) && i < MESH_NUM_X_POINTS - 1) i++;
|
2015-03-26 04:36:24 +01:00
|
|
|
return i - 1;
|
2015-03-15 10:43:26 +01:00
|
|
|
}
|
2015-10-03 08:08:58 +02:00
|
|
|
|
2015-03-15 10:43:26 +01:00
|
|
|
int select_y_index(float y) {
|
2015-03-26 04:36:24 +01:00
|
|
|
int i = 1;
|
|
|
|
while (y > get_y(i) && i < MESH_NUM_Y_POINTS - 1) i++;
|
|
|
|
return i - 1;
|
2015-03-15 10:43:26 +01:00
|
|
|
}
|
2015-10-03 08:08:58 +02:00
|
|
|
|
2015-03-15 10:43:26 +01:00
|
|
|
float calc_z0(float a0, float a1, float z1, float a2, float z2) {
|
2015-10-03 08:08:58 +02:00
|
|
|
float delta_z = (z2 - z1) / (a2 - a1);
|
2015-03-26 04:36:24 +01:00
|
|
|
float delta_a = a0 - a1;
|
|
|
|
return z1 + delta_a * delta_z;
|
2015-03-15 10:43:26 +01:00
|
|
|
}
|
2015-10-03 08:08:58 +02:00
|
|
|
|
2015-03-15 10:43:26 +01:00
|
|
|
float get_z(float x0, float y0) {
|
2015-03-26 04:36:24 +01:00
|
|
|
int x_index = select_x_index(x0);
|
|
|
|
int y_index = select_y_index(y0);
|
|
|
|
float z1 = calc_z0(x0,
|
|
|
|
get_x(x_index), z_values[y_index][x_index],
|
2015-10-03 08:08:58 +02:00
|
|
|
get_x(x_index + 1), z_values[y_index][x_index + 1]);
|
2015-03-26 04:36:24 +01:00
|
|
|
float z2 = calc_z0(x0,
|
2015-10-03 08:08:58 +02:00
|
|
|
get_x(x_index), z_values[y_index + 1][x_index],
|
|
|
|
get_x(x_index + 1), z_values[y_index + 1][x_index + 1]);
|
2015-03-26 04:36:24 +01:00
|
|
|
float z0 = calc_z0(y0,
|
|
|
|
get_y(y_index), z1,
|
2015-10-03 08:08:58 +02:00
|
|
|
get_y(y_index + 1), z2);
|
2016-03-24 22:16:09 +01:00
|
|
|
return z0 + z_offset;
|
2015-03-15 10:43:26 +01:00
|
|
|
}
|
2015-03-26 04:36:24 +01:00
|
|
|
};
|
2015-03-15 10:43:26 +01:00
|
|
|
|
2015-03-26 04:36:24 +01:00
|
|
|
extern mesh_bed_leveling mbl;
|
2015-03-15 10:43:26 +01:00
|
|
|
|
|
|
|
#endif // MESH_BED_LEVELING
|