From 4d5ba3899b9ba0fe5f6b8c9cc056af9a2a2b3970 Mon Sep 17 00:00:00 2001 From: Knutwurst <36196269+knutwurst@users.noreply.github.com> Date: Sat, 24 Jun 2023 11:38:08 +0200 Subject: [PATCH] Remove duplicate softEndstop setting. It's already set by the print timer. --- Marlin/src/lcd/extui/knutwurst/anycubic_touchscreen.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/Marlin/src/lcd/extui/knutwurst/anycubic_touchscreen.cpp b/Marlin/src/lcd/extui/knutwurst/anycubic_touchscreen.cpp index db2ab962..06686fec 100755 --- a/Marlin/src/lcd/extui/knutwurst/anycubic_touchscreen.cpp +++ b/Marlin/src/lcd/extui/knutwurst/anycubic_touchscreen.cpp @@ -216,7 +216,6 @@ void AnycubicTouchscreenClass::StartPrint() { SERIAL_ECHOPGM(" "); SERIAL_ECHOLN(currentFileOrDirectory); #endif - setSoftEndstopState(false); mediaPrintingState = AMPRINTSTATE_PRINTING; mediaPauseState = AMPAUSESTATE_NOT_PAUSED; printFile(currentFileOrDirectory); @@ -242,7 +241,6 @@ void AnycubicTouchscreenClass::PausePrint() { inline void AnycubicTouchscreenClass::StopPrint() { #if ENABLED(SDSUPPORT) - setSoftEndstopState(true); mediaPrintingState = AMPRINTSTATE_STOP_REQUESTED; mediaPauseState = AMPAUSESTATE_NOT_PAUSED; SENDLINE_DBG_PGM("J16", "TFT Serial Debug: SD print stop called... J16");