Simplify the delay in kill()

This commit is contained in:
Scott Lahteine 2016-08-08 21:49:34 -07:00
parent 30b1c731b5
commit 45f67164b6

View file

@ -8671,7 +8671,7 @@ void kill(const char* lcd_msg) {
UNUSED(lcd_msg);
#endif
for (int i = 5; i--;) delay(100); // Wait a short time
delay(500); // Wait a short time
cli(); // Stop interrupts
thermalManager.disable_all_heaters();