Skip to content

Commit

Permalink
🚸 Echo G30 out-of-bounds (MarlinFirmware#25671)
Browse files Browse the repository at this point in the history
  • Loading branch information
drawlerr authored and thinkyhead committed May 17, 2023
1 parent df7d13a commit 5b8be44
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions Marlin/src/gcode/probe/G30.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
#include "../../module/motion.h"
#include "../../module/probe.h"
#include "../../feature/bedlevel/bedlevel.h"
#include "../../lcd/marlinui.h"

#if HAS_PTC
#include "../../feature/probe_temp_comp.h"
Expand All @@ -37,10 +38,6 @@
#include "../../module/tool_change.h"
#endif

#if EITHER(DWIN_LCD_PROUI, DWIN_CREALITY_LCD_JYERSUI)
#include "../../lcd/marlinui.h"
#endif

/**
* G30: Do a single Z probe at the current XY
*
Expand Down Expand Up @@ -100,10 +97,8 @@ void GcodeSuite::G30() {
report_current_position();
}
else {
#if ENABLED(DWIN_LCD_PROUI)
SERIAL_ECHOLNF(GET_EN_TEXT_F(MSG_ZPROBE_OUT));
LCD_MESSAGE(MSG_ZPROBE_OUT);
#endif
SERIAL_ECHOLNF(GET_EN_TEXT_F(MSG_ZPROBE_OUT));
LCD_MESSAGE(MSG_ZPROBE_OUT);
}

// Restore the active tool
Expand Down

0 comments on commit 5b8be44

Please sign in to comment.