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);
}
/**