From b57901c6bbbdbcb54bc76c82a60c10fe1e81069f Mon Sep 17 00:00:00 2001 From: Marcio Teixeira Date: Tue, 21 Nov 2017 10:01:11 -0700 Subject: [PATCH] Probe fill now uses kill() instead of stop(). - Attempt to solve bug where printer continues to heat extruders after probe fail. --- Marlin/Conditionals_LulzBot.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Marlin/Conditionals_LulzBot.h b/Marlin/Conditionals_LulzBot.h index f826f9792..23770bc2c 100644 --- a/Marlin/Conditionals_LulzBot.h +++ b/Marlin/Conditionals_LulzBot.h @@ -13,7 +13,7 @@ * got disabled. */ -#define LULZBOT_FW_VERSION ".41" // Change this with each update +#define LULZBOT_FW_VERSION ".42" // Change this with each update #if ( \ !defined(LULZBOT_Gladiola_Mini) && \ @@ -1566,8 +1566,7 @@ line_to_current_position(); \ sync_plan_position_e(); \ stepper.synchronize(); \ - stop(); /* stop print job */ \ - LCD_MESSAGEPGM(MSG_ERR_PROBING_FAILED); /* stop changes the message... */ \ + kill(MSG_ERR_PROBING_FAILED); /* stop print job */ \ return NAN; /* abort the leveling in progress */ \ } \ SERIAL_ERRORLNPGM(MSG_REWIPE); \