Probe fill now uses kill() instead of stop().

- Attempt to solve bug where printer continues to heat extruders
  after probe fail.
master
Marcio Teixeira 7 years ago
parent b42162f2d6
commit b57901c6bb

@ -13,7 +13,7 @@
* got disabled. * got disabled.
*/ */
#define LULZBOT_FW_VERSION ".41" // Change this with each update #define LULZBOT_FW_VERSION ".42" // Change this with each update
#if ( \ #if ( \
!defined(LULZBOT_Gladiola_Mini) && \ !defined(LULZBOT_Gladiola_Mini) && \
@ -1566,8 +1566,7 @@
line_to_current_position(); \ line_to_current_position(); \
sync_plan_position_e(); \ sync_plan_position_e(); \
stepper.synchronize(); \ stepper.synchronize(); \
stop(); /* stop print job */ \ kill(MSG_ERR_PROBING_FAILED); /* stop print job */ \
LCD_MESSAGEPGM(MSG_ERR_PROBING_FAILED); /* stop changes the message... */ \
return NAN; /* abort the leveling in progress */ \ return NAN; /* abort the leveling in progress */ \
} \ } \
SERIAL_ERRORLNPGM(MSG_REWIPE); \ SERIAL_ERRORLNPGM(MSG_REWIPE); \

Loading…
Cancel
Save