Disable steppers on M112 (#15065)

And change verbiage to not refer to "Emergency Stop."
This commit is contained in:
InsanityAutomation
2019-08-28 01:51:01 -04:00
committed by Scott Lahteine
parent 318356b6bc
commit b7796bcce6
7 changed files with 17 additions and 13 deletions

View File

@ -38,10 +38,10 @@ void GcodeSuite::M108() {
}
/**
* M112: Emergency Stop
* M112: Full Shutdown
*/
void GcodeSuite::M112() {
kill();
kill(PSTR("M112 Shutdown"), true);
}
/**

View File

@ -86,7 +86,7 @@
/**
* M81: Turn off Power, including Power Supply, if there is one.
*
* This code should ALWAYS be available for EMERGENCY SHUTDOWN!
* This code should ALWAYS be available for FULL SHUTDOWN!
*/
void GcodeSuite::M81() {
thermalManager.disable_all_heaters();