From f07870644247edf67c4a660f4e0843d9f1838129 Mon Sep 17 00:00:00 2001 From: Knutwurst <36196269+knutwurst@users.noreply.github.com> Date: Sun, 16 Aug 2020 12:01:30 +0200 Subject: [PATCH] - Disable Stepper after Hotend PID Tuning - Bump version zu 1.1.3 Release - Finally Fix 0.01 Steps for manual leveling --- Marlin/src/inc/Version.h | 2 +- Marlin/src/lcd/anycubic_touchscreen.cpp | 12 +++++------- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/Marlin/src/inc/Version.h b/Marlin/src/inc/Version.h index ea2d6cc4..3c91a689 100755 --- a/Marlin/src/inc/Version.h +++ b/Marlin/src/inc/Version.h @@ -41,7 +41,7 @@ * here we define this default string as the date where the latest release * version was tagged. */ - #define CUSTOM_BUILD_VERSION "1.1.3-BETA" + #define CUSTOM_BUILD_VERSION "1.1.3" #ifndef STRING_DISTRIBUTION_DATE //#define STRING_DISTRIBUTION_DATE "2020-07-09" diff --git a/Marlin/src/lcd/anycubic_touchscreen.cpp b/Marlin/src/lcd/anycubic_touchscreen.cpp index de83adee..989843b8 100755 --- a/Marlin/src/lcd/anycubic_touchscreen.cpp +++ b/Marlin/src/lcd/anycubic_touchscreen.cpp @@ -447,7 +447,7 @@ void AnycubicTouchscreenClass::HandleSpecialMenu() || (strcasestr(currentTouchscreenSelection, SM_PID_HOTEND_S) != NULL)) { SERIAL_ECHOLNPGM("Special Menu: PID Tune Hotend"); - queue.inject_P(PSTR("G28\nG1 Z20\nG1 X100 Y100 F4000\nG1 Z5\nM106 S172\nG4 P500\nM303 E0 S215 C15 U1\nG4 P500\nM107\nG28\nG1 Z10")); + queue.inject_P(PSTR("G28\nG1 Z20\nG1 X100 Y100 F4000\nG1 Z5\nM106 S172\nG4 P500\nM303 E0 S215 C15 U1\nG4 P500\nM107\nG28\nG1 Z10\nM84")); buzzer.tone(200, 1108); buzzer.tone(200, 1661); buzzer.tone(200, 1108); @@ -527,17 +527,15 @@ void AnycubicTouchscreenClass::HandleSpecialMenu() || (strcasestr(currentTouchscreenSelection, SM_Z_UP_001_S) != NULL)) { SERIAL_ECHOLNPGM("Special Menu: Z Up 0.01"); - queue.inject_P(PSTR("G91\nG1 Z+0.01\nG90")); //queue.inject_P(PSTR("G91\nG1 Z+0.01\nG90")); - //queue.inject_P(PSTR("G91\nG1 Z-0.02\nG90")); + queue.inject_P(PSTR("G91\nG1 Z+0.03\nG4 P250\nG1 Z-0.02\nG90")); } else if ((strcasestr(currentTouchscreenSelection, SM_Z_DN_001_L) != NULL) - || (strcasestr(currentTouchscreenSelection, SM_Z_DN_001_L) != NULL)) + || (strcasestr(currentTouchscreenSelection, SM_Z_DN_001_S) != NULL)) { SERIAL_ECHOLNPGM("Special Menu: Z Down 0.01"); - queue.inject_P(PSTR("G91\nG1 Z-0.01\nG90")); - //queue.inject_P(PSTR("G91\nG1 Z+0.02\nG90")); - //queue.inject_P(PSTR("G91\nG1 Z-0.03\nG90")); + //queue.inject_P(PSTR("G91\nG1 Z-0.01\nG90")); + queue.inject_P(PSTR("G91\nG1 Z+0.02\nG4 P250\nG1 Z-0.03\nG90")); } #endif