2020-10-05 07:31:20 +02:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
|
|
|
* Copyright (c) 2020 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
|
2020-11-07 06:46:46 +01:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2020-10-05 07:31:20 +02:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
//
|
|
|
|
// Calibrate Probe offset menu.
|
|
|
|
//
|
|
|
|
|
|
|
|
#include "../../inc/MarlinConfigPre.h"
|
|
|
|
|
|
|
|
#if ENABLED(PROBE_OFFSET_WIZARD)
|
|
|
|
|
|
|
|
#ifndef PROBE_OFFSET_START
|
|
|
|
#error "PROBE_OFFSET_WIZARD requires a PROBE_OFFSET_START with a negative value."
|
|
|
|
#else
|
|
|
|
static_assert(PROBE_OFFSET_START < 0, "PROBE_OFFSET_START must be < 0. Please update your configuration.");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "menu_item.h"
|
|
|
|
#include "menu_addon.h"
|
2020-11-18 04:54:21 +01:00
|
|
|
#include "../../gcode/queue.h"
|
2020-10-05 07:31:20 +02:00
|
|
|
#include "../../module/motion.h"
|
|
|
|
#include "../../module/planner.h"
|
|
|
|
#include "../../module/probe.h"
|
|
|
|
|
|
|
|
#if HAS_LEVELING
|
|
|
|
#include "../../feature/bedlevel/bedlevel.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Global storage
|
|
|
|
float z_offset_backup, calculated_z_offset;
|
|
|
|
|
|
|
|
TERN_(HAS_LEVELING, bool leveling_was_active);
|
|
|
|
|
|
|
|
void prepare_for_calibration() {
|
|
|
|
z_offset_backup = probe.offset.z;
|
|
|
|
|
|
|
|
// Disable soft endstops for free Z movement
|
2020-10-12 23:48:04 +02:00
|
|
|
SET_SOFT_ENDSTOP_LOOSE(true);
|
2020-10-05 07:31:20 +02:00
|
|
|
|
|
|
|
// Disable leveling for raw planner motion
|
|
|
|
#if HAS_LEVELING
|
|
|
|
leveling_was_active = planner.leveling_active;
|
|
|
|
set_bed_leveling_enabled(false);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void set_offset_and_go_back(const float &z) {
|
|
|
|
probe.offset.z = z;
|
2020-10-12 23:48:04 +02:00
|
|
|
SET_SOFT_ENDSTOP_LOOSE(false);
|
2020-10-05 07:31:20 +02:00
|
|
|
TERN_(HAS_LEVELING, set_bed_leveling_enabled(leveling_was_active));
|
|
|
|
ui.goto_previous_screen_no_defer();
|
|
|
|
}
|
|
|
|
|
|
|
|
void _goto_manual_move_z(const float scale) {
|
|
|
|
ui.manual_move.menu_scale = scale;
|
|
|
|
ui.goto_screen(lcd_move_z);
|
|
|
|
}
|
|
|
|
|
|
|
|
void probe_offset_wizard_menu() {
|
|
|
|
START_MENU();
|
|
|
|
calculated_z_offset = probe.offset.z + current_position.z;
|
|
|
|
|
|
|
|
if (LCD_HEIGHT >= 4)
|
|
|
|
STATIC_ITEM(MSG_MOVE_NOZZLE_TO_BED, SS_CENTER|SS_INVERT);
|
|
|
|
|
|
|
|
STATIC_ITEM_P(PSTR("Z="), SS_CENTER, ftostr42_52(current_position.z));
|
|
|
|
STATIC_ITEM(MSG_ZPROBE_ZOFFSET, SS_LEFT, ftostr42_52(calculated_z_offset));
|
|
|
|
|
|
|
|
SUBMENU(MSG_MOVE_1MM, []{ _goto_manual_move_z( 1); });
|
|
|
|
SUBMENU(MSG_MOVE_01MM, []{ _goto_manual_move_z( 0.1f); });
|
|
|
|
|
|
|
|
if ((SHORT_MANUAL_Z_MOVE) > 0.0f && (SHORT_MANUAL_Z_MOVE) < 0.1f) {
|
2020-10-15 21:15:11 +02:00
|
|
|
char tmp[20], numstr[10];
|
|
|
|
// Determine digits needed right of decimal
|
|
|
|
const uint8_t digs = !UNEAR_ZERO((SHORT_MANUAL_Z_MOVE) * 1000 - int((SHORT_MANUAL_Z_MOVE) * 1000)) ? 4 :
|
|
|
|
!UNEAR_ZERO((SHORT_MANUAL_Z_MOVE) * 100 - int((SHORT_MANUAL_Z_MOVE) * 100)) ? 3 : 2;
|
|
|
|
sprintf_P(tmp, GET_TEXT(MSG_MOVE_Z_DIST), dtostrf(SHORT_MANUAL_Z_MOVE, 1, digs, numstr));
|
|
|
|
#if DISABLED(HAS_GRAPHICAL_TFT)
|
|
|
|
extern const char NUL_STR[];
|
|
|
|
SUBMENU_P(NUL_STR, []{ _goto_manual_move_z(float(SHORT_MANUAL_Z_MOVE)); });
|
|
|
|
MENU_ITEM_ADDON_START(0 + ENABLED(HAS_MARLINUI_HD44780));
|
2020-10-05 07:31:20 +02:00
|
|
|
lcd_put_u8str(tmp);
|
2020-10-15 21:15:11 +02:00
|
|
|
MENU_ITEM_ADDON_END();
|
|
|
|
#else
|
|
|
|
SUBMENU_P(tmp, []{ _goto_manual_move_z(float(SHORT_MANUAL_Z_MOVE)); });
|
|
|
|
#endif
|
2020-10-05 07:31:20 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
ACTION_ITEM(MSG_BUTTON_DONE, []{
|
|
|
|
set_offset_and_go_back(calculated_z_offset);
|
|
|
|
do_z_clearance(20.0
|
|
|
|
#ifdef Z_AFTER_HOMING
|
|
|
|
- 20.0 + Z_AFTER_HOMING
|
|
|
|
#endif
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
ACTION_ITEM(MSG_BUTTON_CANCEL, []{
|
|
|
|
set_offset_and_go_back(z_offset_backup);
|
|
|
|
});
|
|
|
|
|
|
|
|
END_MENU();
|
|
|
|
}
|
|
|
|
|
2020-11-18 04:54:21 +01:00
|
|
|
#ifdef PROBE_OFFSET_WIZARD_XY_POS
|
|
|
|
|
|
|
|
#define HAS_PROBE_OFFSET_WIZARD_XY_POS 1
|
|
|
|
|
|
|
|
inline void goto_probe_offset_wizard() {
|
|
|
|
if (ui.wait_for_move) return;
|
|
|
|
constexpr xy_pos_t wizard_pos = PROBE_OFFSET_WIZARD_XY_POS;
|
|
|
|
current_position = wizard_pos;
|
|
|
|
ui.wait_for_move = true;
|
|
|
|
line_to_current_position(MMM_TO_MMS(HOMING_FEEDRATE_XY)); // Could invoke idle()
|
|
|
|
ui.wait_for_move = false;
|
|
|
|
ui.synchronize();
|
|
|
|
prepare_for_calibration();
|
|
|
|
probe.offset.z = PROBE_OFFSET_START;
|
|
|
|
ui.goto_screen(probe_offset_wizard_menu);
|
|
|
|
ui.defer_status_screen();
|
|
|
|
}
|
2020-10-05 07:31:20 +02:00
|
|
|
|
2020-11-18 04:54:21 +01:00
|
|
|
#endif
|
2020-10-05 07:31:20 +02:00
|
|
|
|
2020-11-18 04:54:21 +01:00
|
|
|
void home_and_goto_probe_offset_wizard() {
|
2020-10-05 07:31:20 +02:00
|
|
|
queue.inject_P(G28_STR);
|
|
|
|
ui.goto_screen([]{
|
|
|
|
_lcd_draw_homing();
|
2020-11-18 04:54:21 +01:00
|
|
|
if (all_axes_homed())
|
|
|
|
ui.goto_screen(TERN(HAS_PROBE_OFFSET_WIZARD_XY_POS, goto_probe_offset_wizard, probe_offset_wizard_menu));
|
2020-10-05 07:31:20 +02:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // PROBE_OFFSET_WIZARD
|