🐛 Fix "no T param" handling

This commit is contained in:
Scott Lahteine
2021-12-31 01:43:25 -06:00
parent c1410020ab
commit ff46d7cae2
5 changed files with 5 additions and 4 deletions

View File

@@ -134,7 +134,7 @@ static void say_stealth_status() {
*/
void GcodeSuite::M569() {
if (parser.seen('S'))
set_stealth_status(parser.value_bool(), get_target_e_stepper_from_command());
set_stealth_status(parser.value_bool(), get_target_e_stepper_from_command(-2));
else
say_stealth_status();
}