2017-03-18 16:14:31 +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/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2018-02-05 00:24:23 +01:00
|
|
|
#include "MarlinConfig.h"
|
2017-03-18 16:14:31 +01:00
|
|
|
|
|
|
|
#if ENABLED(AUTO_BED_LEVELING_UBL)
|
2017-03-24 06:53:37 +01:00
|
|
|
|
2018-02-05 00:24:23 +01:00
|
|
|
#include "Marlin.h"
|
2017-04-06 02:25:36 +02:00
|
|
|
#include "ubl.h"
|
2017-03-18 16:14:31 +01:00
|
|
|
#include "hex_print_routines.h"
|
2017-04-26 03:50:17 +02:00
|
|
|
#include "temperature.h"
|
2017-10-13 23:16:32 +02:00
|
|
|
#include "planner.h"
|
2018-02-05 00:24:23 +01:00
|
|
|
#include "math.h"
|
|
|
|
|
|
|
|
unified_bed_leveling ubl;
|
2017-05-22 05:09:51 +02:00
|
|
|
|
2017-05-02 08:06:25 +02:00
|
|
|
uint8_t ubl_cnt = 0;
|
2017-04-26 03:50:17 +02:00
|
|
|
|
2017-05-16 09:34:36 +02:00
|
|
|
void unified_bed_leveling::echo_name() { SERIAL_PROTOCOLPGM("Unified Bed Leveling"); }
|
|
|
|
|
2018-02-26 08:00:56 +01:00
|
|
|
void unified_bed_leveling::report_current_mesh() {
|
|
|
|
if (!leveling_is_valid()) return;
|
|
|
|
SERIAL_ECHO_START();
|
2018-04-16 04:02:09 +02:00
|
|
|
SERIAL_ECHOLNPGM(" G29 I999");
|
2018-02-26 08:00:56 +01:00
|
|
|
for (uint8_t x = 0; x < GRID_MAX_POINTS_X; x++)
|
|
|
|
for (uint8_t y = 0; y < GRID_MAX_POINTS_Y; y++)
|
|
|
|
if (!isnan(z_values[x][y])) {
|
|
|
|
SERIAL_ECHO_START();
|
2018-04-16 04:02:09 +02:00
|
|
|
SERIAL_ECHOPAIR(" M421 I", x);
|
|
|
|
SERIAL_ECHOPAIR(" J", y);
|
|
|
|
SERIAL_ECHOPGM(" Z");
|
|
|
|
SERIAL_ECHO_F(z_values[x][y], 2);
|
2018-02-26 08:00:56 +01:00
|
|
|
SERIAL_EOL();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-16 09:34:36 +02:00
|
|
|
void unified_bed_leveling::report_state() {
|
|
|
|
echo_name();
|
|
|
|
SERIAL_PROTOCOLPGM(" System v" UBL_VERSION " ");
|
2017-10-13 23:16:32 +02:00
|
|
|
if (!planner.leveling_active) SERIAL_PROTOCOLPGM("in");
|
2017-05-16 09:34:36 +02:00
|
|
|
SERIAL_PROTOCOLLNPGM("active.");
|
|
|
|
safe_delay(50);
|
|
|
|
}
|
|
|
|
|
2017-12-09 10:58:12 +01:00
|
|
|
#if ENABLED(UBL_DEVEL_DEBUGGING)
|
|
|
|
|
|
|
|
static void debug_echo_axis(const AxisEnum axis) {
|
|
|
|
if (current_position[axis] == destination[axis])
|
|
|
|
SERIAL_ECHOPGM("-------------");
|
|
|
|
else
|
|
|
|
SERIAL_ECHO_F(destination[X_AXIS], 6);
|
|
|
|
}
|
|
|
|
|
|
|
|
void debug_current_and_destination(const char *title) {
|
|
|
|
|
|
|
|
// if the title message starts with a '!' it is so important, we are going to
|
|
|
|
// ignore the status of the g26_debug_flag
|
|
|
|
if (*title != '!' && !g26_debug_flag) return;
|
|
|
|
|
|
|
|
const float de = destination[E_AXIS] - current_position[E_AXIS];
|
|
|
|
|
|
|
|
if (de == 0.0) return; // Printing moves only
|
|
|
|
|
|
|
|
const float dx = destination[X_AXIS] - current_position[X_AXIS],
|
|
|
|
dy = destination[Y_AXIS] - current_position[Y_AXIS],
|
|
|
|
xy_dist = HYPOT(dx, dy);
|
|
|
|
|
|
|
|
if (xy_dist == 0.0) return;
|
|
|
|
|
|
|
|
SERIAL_ECHOPGM(" fpmm=");
|
|
|
|
const float fpmm = de / xy_dist;
|
|
|
|
SERIAL_ECHO_F(fpmm, 6);
|
|
|
|
|
|
|
|
SERIAL_ECHOPGM(" current=( ");
|
|
|
|
SERIAL_ECHO_F(current_position[X_AXIS], 6);
|
|
|
|
SERIAL_ECHOPGM(", ");
|
|
|
|
SERIAL_ECHO_F(current_position[Y_AXIS], 6);
|
|
|
|
SERIAL_ECHOPGM(", ");
|
|
|
|
SERIAL_ECHO_F(current_position[Z_AXIS], 6);
|
|
|
|
SERIAL_ECHOPGM(", ");
|
|
|
|
SERIAL_ECHO_F(current_position[E_AXIS], 6);
|
|
|
|
SERIAL_ECHOPGM(" ) destination=( ");
|
|
|
|
debug_echo_axis(X_AXIS);
|
|
|
|
SERIAL_ECHOPGM(", ");
|
|
|
|
debug_echo_axis(Y_AXIS);
|
|
|
|
SERIAL_ECHOPGM(", ");
|
|
|
|
debug_echo_axis(Z_AXIS);
|
|
|
|
SERIAL_ECHOPGM(", ");
|
|
|
|
debug_echo_axis(E_AXIS);
|
|
|
|
SERIAL_ECHOPGM(" ) ");
|
|
|
|
SERIAL_ECHO(title);
|
|
|
|
SERIAL_EOL();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // UBL_DEVEL_DEBUGGING
|
|
|
|
|
2017-10-14 04:58:45 +02:00
|
|
|
int8_t unified_bed_leveling::storage_slot;
|
2017-03-18 16:14:31 +01:00
|
|
|
|
2017-10-13 23:16:32 +02:00
|
|
|
float unified_bed_leveling::z_values[GRID_MAX_POINTS_X][GRID_MAX_POINTS_Y];
|
2017-04-23 01:01:39 +02:00
|
|
|
|
|
|
|
// 15 is the maximum nubmer of grid points supported + 1 safety margin for now,
|
|
|
|
// until determinism prevails
|
2017-05-22 21:41:09 +02:00
|
|
|
constexpr float unified_bed_leveling::_mesh_index_to_xpos[16],
|
|
|
|
unified_bed_leveling::_mesh_index_to_ypos[16];
|
2017-03-31 07:15:32 +02:00
|
|
|
|
2017-11-23 01:28:43 +01:00
|
|
|
#if ENABLED(ULTIPANEL)
|
|
|
|
bool unified_bed_leveling::lcd_map_control = false;
|
|
|
|
#endif
|
|
|
|
|
2017-03-31 07:15:32 +02:00
|
|
|
volatile int unified_bed_leveling::encoder_diff;
|
|
|
|
|
|
|
|
unified_bed_leveling::unified_bed_leveling() {
|
2017-12-11 03:49:45 +01:00
|
|
|
ubl_cnt++; // Debug counter to ensure we only have one UBL object present in memory. We can eliminate this (and all references to ubl_cnt) very soon.
|
2017-03-18 16:14:31 +01:00
|
|
|
reset();
|
|
|
|
}
|
|
|
|
|
2017-03-20 07:42:41 +01:00
|
|
|
void unified_bed_leveling::reset() {
|
2017-12-11 03:49:45 +01:00
|
|
|
const bool was_enabled = planner.leveling_active;
|
2017-06-04 00:11:43 +02:00
|
|
|
set_bed_leveling_enabled(false);
|
2017-10-14 04:58:45 +02:00
|
|
|
storage_slot = -1;
|
2017-05-22 05:09:51 +02:00
|
|
|
#if ENABLED(ENABLE_LEVELING_FADE_HEIGHT)
|
2017-10-13 23:16:32 +02:00
|
|
|
planner.set_z_fade_height(10.0);
|
2017-05-22 05:09:51 +02:00
|
|
|
#endif
|
2017-03-18 16:14:31 +01:00
|
|
|
ZERO(z_values);
|
2017-12-11 03:49:45 +01:00
|
|
|
if (was_enabled) report_current_position();
|
2017-03-18 16:14:31 +01:00
|
|
|
}
|
|
|
|
|
2017-03-20 07:42:41 +01:00
|
|
|
void unified_bed_leveling::invalidate() {
|
2017-06-04 00:11:43 +02:00
|
|
|
set_bed_leveling_enabled(false);
|
|
|
|
set_all_mesh_points_to_value(NAN);
|
|
|
|
}
|
|
|
|
|
2017-10-13 02:26:06 +02:00
|
|
|
void unified_bed_leveling::set_all_mesh_points_to_value(const float value) {
|
2017-06-04 00:11:43 +02:00
|
|
|
for (uint8_t x = 0; x < GRID_MAX_POINTS_X; x++) {
|
|
|
|
for (uint8_t y = 0; y < GRID_MAX_POINTS_Y; y++) {
|
|
|
|
z_values[x][y] = value;
|
|
|
|
}
|
|
|
|
}
|
2017-03-18 16:14:31 +01:00
|
|
|
}
|
|
|
|
|
2018-04-16 04:02:09 +02:00
|
|
|
static void serial_echo_xy(const uint8_t sp, const int16_t x, const int16_t y) {
|
|
|
|
SERIAL_ECHO_SP(sp);
|
|
|
|
SERIAL_CHAR('(');
|
|
|
|
if (x < 100) { SERIAL_CHAR(' '); if (x < 10) SERIAL_CHAR(' '); }
|
|
|
|
SERIAL_ECHO(x);
|
|
|
|
SERIAL_CHAR(',');
|
|
|
|
if (y < 100) { SERIAL_CHAR(' '); if (y < 10) SERIAL_CHAR(' '); }
|
|
|
|
SERIAL_ECHO(y);
|
|
|
|
SERIAL_CHAR(')');
|
|
|
|
safe_delay(5);
|
|
|
|
}
|
2017-06-13 01:26:49 +02:00
|
|
|
|
2018-04-16 04:02:09 +02:00
|
|
|
static void serial_echo_column_labels(const uint8_t sp) {
|
|
|
|
SERIAL_ECHO_SP(7);
|
|
|
|
for (int8_t i = 0; i < GRID_MAX_POINTS_X; i++) {
|
|
|
|
if (i < 10) SERIAL_CHAR(' ');
|
|
|
|
SERIAL_ECHO(i);
|
|
|
|
SERIAL_ECHO_SP(sp);
|
|
|
|
}
|
|
|
|
safe_delay(10);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Produce one of these mesh maps:
|
|
|
|
* 0: Human-readable
|
|
|
|
* 1: CSV format for spreadsheet import
|
|
|
|
* 2: TODO: Display on Graphical LCD
|
|
|
|
* 4: Compact Human-Readable
|
|
|
|
*/
|
2017-03-24 06:53:37 +01:00
|
|
|
void unified_bed_leveling::display_map(const int map_type) {
|
2018-03-21 06:26:00 +01:00
|
|
|
#if HAS_AUTO_REPORTING || ENABLED(HOST_KEEPALIVE_FEATURE)
|
2018-03-07 07:53:30 +01:00
|
|
|
suspend_auto_report = true;
|
|
|
|
#endif
|
|
|
|
|
2018-04-16 04:02:09 +02:00
|
|
|
constexpr uint8_t eachsp = 1 + 6 + 1, // [-3.567]
|
|
|
|
twixt = eachsp * (GRID_MAX_POINTS_X) - 9 * 2; // Leading 4sp, Coordinates 9sp each
|
2017-03-18 16:14:31 +01:00
|
|
|
|
2018-04-16 04:02:09 +02:00
|
|
|
const bool human = !(map_type & 0x3), csv = map_type == 1, lcd = map_type == 2, comp = map_type & 0x4;
|
|
|
|
|
|
|
|
SERIAL_ECHOPGM("\nBed Topography Report");
|
|
|
|
if (human) {
|
|
|
|
SERIAL_ECHOPGM(":\n\n");
|
|
|
|
serial_echo_xy(4, MESH_MIN_X, MESH_MAX_Y);
|
|
|
|
serial_echo_xy(twixt, MESH_MAX_X, MESH_MAX_Y);
|
2017-06-09 17:51:23 +02:00
|
|
|
SERIAL_EOL();
|
2018-04-16 04:02:09 +02:00
|
|
|
serial_echo_column_labels(eachsp - 2);
|
2017-03-26 00:37:54 +01:00
|
|
|
}
|
2017-06-16 20:01:52 +02:00
|
|
|
else {
|
2018-04-16 04:02:09 +02:00
|
|
|
SERIAL_ECHOPGM(" for ");
|
|
|
|
serialprintPGM(csv ? PSTR("CSV:\n") : PSTR("LCD:\n"));
|
2017-06-16 20:01:52 +02:00
|
|
|
}
|
2017-06-13 01:26:49 +02:00
|
|
|
|
2017-05-22 21:41:09 +02:00
|
|
|
const float current_xi = get_cell_index_x(current_position[X_AXIS] + (MESH_X_DIST) / 2.0),
|
|
|
|
current_yi = get_cell_index_y(current_position[Y_AXIS] + (MESH_Y_DIST) / 2.0);
|
2017-03-29 02:45:54 +02:00
|
|
|
|
2018-04-16 04:02:09 +02:00
|
|
|
if (!lcd) SERIAL_EOL();
|
2017-04-06 05:29:44 +02:00
|
|
|
for (int8_t j = GRID_MAX_POINTS_Y - 1; j >= 0; j--) {
|
2018-04-16 04:02:09 +02:00
|
|
|
|
|
|
|
// Row Label (J index)
|
|
|
|
if (human) {
|
|
|
|
if (j < 10) SERIAL_CHAR(' ');
|
|
|
|
SERIAL_ECHO(j);
|
|
|
|
SERIAL_ECHOPGM(" |");
|
|
|
|
}
|
|
|
|
|
|
|
|
// Row Values (I indexes)
|
2017-04-06 05:29:44 +02:00
|
|
|
for (uint8_t i = 0; i < GRID_MAX_POINTS_X; i++) {
|
2017-03-18 16:14:31 +01:00
|
|
|
|
2018-04-16 04:02:09 +02:00
|
|
|
// Opening Brace or Space
|
|
|
|
const bool is_current = i == current_xi && j == current_yi;
|
|
|
|
if (human) SERIAL_CHAR(is_current ? '[' : ' ');
|
2017-03-29 02:45:54 +02:00
|
|
|
|
2018-04-16 04:02:09 +02:00
|
|
|
// Z Value at current I, J
|
2017-03-29 02:45:54 +02:00
|
|
|
const float f = z_values[i][j];
|
2018-04-16 04:02:09 +02:00
|
|
|
if (lcd) {
|
|
|
|
// TODO: Display on Graphical LCD
|
2017-03-29 02:45:54 +02:00
|
|
|
}
|
2018-04-16 04:02:09 +02:00
|
|
|
else if (isnan(f))
|
|
|
|
serialprintPGM(human ? PSTR(" . ") : PSTR("NAN"));
|
|
|
|
else if (human || csv) {
|
|
|
|
if (human && f >= 0.0) SERIAL_CHAR(f > 0 ? '+' : ' '); // Space for positive ('-' for negative)
|
|
|
|
SERIAL_ECHO_F(f, 3); // Positive: 5 digits, Negative: 6 digits
|
2017-03-18 16:14:31 +01:00
|
|
|
}
|
2017-06-16 20:01:52 +02:00
|
|
|
idle();
|
2018-04-16 04:02:09 +02:00
|
|
|
if (csv && i < GRID_MAX_POINTS_X - 1) SERIAL_CHAR('\t');
|
|
|
|
|
|
|
|
// Closing Brace or Space
|
|
|
|
if (human) SERIAL_CHAR(is_current ? ']' : ' ');
|
2017-03-26 00:37:54 +01:00
|
|
|
|
2017-03-29 02:45:54 +02:00
|
|
|
#if TX_BUFFER_SIZE > 0
|
2018-02-17 00:50:58 +01:00
|
|
|
SERIAL_FLUSHTX();
|
2017-03-25 00:35:10 +01:00
|
|
|
#endif
|
2018-04-16 04:02:09 +02:00
|
|
|
safe_delay(5);
|
2017-03-18 16:14:31 +01:00
|
|
|
}
|
2018-04-16 04:02:09 +02:00
|
|
|
if (!lcd) SERIAL_EOL();
|
|
|
|
|
|
|
|
// A blank line between rows (unless compact)
|
|
|
|
if (j && human && !comp) SERIAL_ECHOLNPGM(" |");
|
2017-03-18 16:14:31 +01:00
|
|
|
}
|
|
|
|
|
2018-04-16 04:02:09 +02:00
|
|
|
if (human) {
|
|
|
|
serial_echo_column_labels(eachsp - 2);
|
|
|
|
SERIAL_EOL();
|
|
|
|
serial_echo_xy(4, MESH_MIN_X, MESH_MIN_Y);
|
|
|
|
serial_echo_xy(twixt, MESH_MAX_X, MESH_MIN_Y);
|
2017-06-09 17:51:23 +02:00
|
|
|
SERIAL_EOL();
|
|
|
|
SERIAL_EOL();
|
2017-03-25 00:35:10 +01:00
|
|
|
}
|
2018-03-07 07:53:30 +01:00
|
|
|
|
2018-03-21 06:26:00 +01:00
|
|
|
#if HAS_AUTO_REPORTING || ENABLED(HOST_KEEPALIVE_FEATURE)
|
2018-03-07 07:53:30 +01:00
|
|
|
suspend_auto_report = false;
|
|
|
|
#endif
|
2017-03-18 16:14:31 +01:00
|
|
|
}
|
|
|
|
|
2017-03-20 07:42:41 +01:00
|
|
|
bool unified_bed_leveling::sanity_check() {
|
2017-03-18 16:14:31 +01:00
|
|
|
uint8_t error_flag = 0;
|
|
|
|
|
2017-06-16 20:01:52 +02:00
|
|
|
if (settings.calc_num_meshes() < 1) {
|
2017-12-09 10:58:12 +01:00
|
|
|
SERIAL_PROTOCOLLNPGM("?Mesh too big for EEPROM.");
|
2017-03-18 16:14:31 +01:00
|
|
|
error_flag++;
|
|
|
|
}
|
|
|
|
|
|
|
|
return !!error_flag;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // AUTO_BED_LEVELING_UBL
|