Skip to content

Commit

Permalink
All LCDs with status
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkyhead committed Apr 14, 2023
1 parent f32122a commit f0d1abd
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 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 given XY (default: current)
*
Expand Down Expand Up @@ -106,9 +103,7 @@ void GcodeSuite::G30() {
}
else {
SERIAL_ECHOLNF(GET_EN_TEXT_F(MSG_ZPROBE_OUT));
#if ENABLED(DWIN_LCD_PROUI)
LCD_MESSAGE(MSG_ZPROBE_OUT);
#endif
LCD_MESSAGE(MSG_ZPROBE_OUT);
}

probe.use_probing_tool(false);
Expand Down

0 comments on commit f0d1abd

Please sign in to comment.