|
|
|
@ -170,11 +170,6 @@ void _goto_manual_move(const float scale) {
|
|
|
|
|
|
|
|
|
|
void _menu_move_distance(const AxisEnum axis, const screenFunc_t func, const int8_t eindex=-1) {
|
|
|
|
|
_manual_move_func_ptr = func;
|
|
|
|
|
#if ENABLED(PREVENT_COLD_EXTRUSION)
|
|
|
|
|
const bool too_cold = axis == E_AXIS && thermalManager.tooColdToExtrude(eindex >= 0 ? eindex : active_extruder);
|
|
|
|
|
#else
|
|
|
|
|
constexpr bool too_cold = false;
|
|
|
|
|
#endif
|
|
|
|
|
START_MENU();
|
|
|
|
|
if (LCD_HEIGHT >= 4) {
|
|
|
|
|
switch (axis) {
|
|
|
|
@ -187,9 +182,7 @@ void _menu_move_distance(const AxisEnum axis, const screenFunc_t func, const int
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (too_cold)
|
|
|
|
|
BACK_ITEM(MSG_HOTEND_TOO_COLD);
|
|
|
|
|
else {
|
|
|
|
|
|
|
|
|
|
BACK_ITEM(MSG_MOVE_AXIS);
|
|
|
|
|
SUBMENU(MSG_MOVE_10MM, []{ _goto_manual_move(10); });
|
|
|
|
|
SUBMENU(MSG_MOVE_1MM, []{ _goto_manual_move( 1); });
|
|
|
|
@ -212,10 +205,34 @@ void _menu_move_distance(const AxisEnum axis, const screenFunc_t func, const int
|
|
|
|
|
SUBMENU_P(tmp, []{ _goto_manual_move(float(SHORT_MANUAL_Z_MOVE)); });
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
END_MENU();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#if E_MANUAL
|
|
|
|
|
|
|
|
|
|
inline void _goto_menu_move_distance_e() {
|
|
|
|
|
ui.goto_screen([]{ _menu_move_distance(E_AXIS, []{ lcd_move_e(); }, -1); });
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
inline void _menu_move_distance_e_maybe() {
|
|
|
|
|
#if ENABLED(PREVENT_COLD_EXTRUSION)
|
|
|
|
|
const bool too_cold = thermalManager.tooColdToExtrude(active_extruder);
|
|
|
|
|
if (too_cold) {
|
|
|
|
|
ui.goto_screen([]{
|
|
|
|
|
MenuItem_confirm::select_screen(
|
|
|
|
|
GET_TEXT(MSG_BUTTON_PROCEED), GET_TEXT(MSG_BACK),
|
|
|
|
|
_goto_menu_move_distance_e, ui.goto_previous_screen,
|
|
|
|
|
GET_TEXT(MSG_HOTEND_TOO_COLD), (const char *)nullptr, PSTR("!")
|
|
|
|
|
);
|
|
|
|
|
});
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
_goto_menu_move_distance_e();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
#endif // E_MANUAL
|
|
|
|
|
|
|
|
|
|
void menu_move() {
|
|
|
|
|
START_MENU();
|
|
|
|
|
BACK_ITEM(MSG_MOTION);
|
|
|
|
@ -278,7 +295,7 @@ void menu_move() {
|
|
|
|
|
#if E_MANUAL
|
|
|
|
|
|
|
|
|
|
// The current extruder
|
|
|
|
|
SUBMENU(MSG_MOVE_E, []{ _menu_move_distance(E_AXIS, []{ lcd_move_e(); }, -1); });
|
|
|
|
|
SUBMENU(MSG_MOVE_E, []{ _menu_move_distance_e_maybe(); });
|
|
|
|
|
|
|
|
|
|
#define SUBMENU_MOVE_E(N) SUBMENU_N(N, MSG_MOVE_EN, []{ _menu_move_distance(E_AXIS, []{ lcd_move_e(MenuItemBase::itemIndex); }, MenuItemBase::itemIndex); });
|
|
|
|
|
|
|
|
|
|