We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 727060d commit bf38241Copy full SHA for bf38241
Firmware/Marlin_main.cpp
@@ -4939,7 +4939,13 @@ if(eSoundMode!=e_SOUND_MODE_SILENT)
4939
codenum = 0;
4940
if(code_seen('P')) codenum = code_value(); // milliseconds to wait
4941
if(code_seen('S')) codenum = code_value() * 1000; // seconds to wait
4942
- if(codenum != 0) LCD_MESSAGERPGM(_n("Sleep..."));////MSG_DWELL
+ if(codenum != 0)
4943
+ {
4944
+ if(custom_message_type != CustomMsg::M117)
4945
4946
+ LCD_MESSAGERPGM(_n("Sleep..."));////MSG_DWELL
4947
+ }
4948
4949
st_synchronize();
4950
codenum += _millis(); // keep track of when we started waiting
4951
previous_millis_cmd.start();
0 commit comments