From fe2c0862aa4c09ed777b21c496ea5f5f36bdac12 Mon Sep 17 00:00:00 2001 From: Sebastien Andrivet Date: Sun, 19 Mar 2023 18:56:56 +0100 Subject: [PATCH] Fix BLTouch tuning, first page was not displayed --- Marlin/src/advi3pp/screens/tuning/bltouch_testing.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Marlin/src/advi3pp/screens/tuning/bltouch_testing.cpp b/Marlin/src/advi3pp/screens/tuning/bltouch_testing.cpp index c428fc9364..92ebc7737c 100755 --- a/Marlin/src/advi3pp/screens/tuning/bltouch_testing.cpp +++ b/Marlin/src/advi3pp/screens/tuning/bltouch_testing.cpp @@ -18,9 +18,10 @@ * */ +#include "../../parameters.h" + #ifdef BLTOUCH -#include "../../parameters.h" #include "../../core/core.h" #include "../../core/dgus.h" #include "../../core/status.h" @@ -66,7 +67,7 @@ bool BLTouchTesting::on_dispatch(KeyValue key_value) { bool BLTouchTesting::on_enter() { pages.save_forward_page(); step_1a(); - return false; + return true; } void BLTouchTesting::on_back_command() { @@ -85,7 +86,6 @@ void BLTouchTesting::on_save_command() { //! Test if the BLTouch is powered void BLTouchTesting::step_1a() { - wait.wait(F("Initialize the BLTouch...")); tested_ = ok_ = Wires::None; set_bits(tested_, Wires::Brown | Wires::Red); bltouch._reset();