mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2025-02-02 07:00:42 +00:00
🚸 Fix repeating "Power Off" message (#26755)
This commit is contained in:
parent
6f00f4ebef
commit
a3101a03ff
1 changed files with 2 additions and 2 deletions
|
@ -98,12 +98,12 @@ void Power::power_on() {
|
|||
* Processes any PSU_POWEROFF_GCODE and makes a PS_OFF_SOUND if enabled.
|
||||
*/
|
||||
void Power::power_off() {
|
||||
SERIAL_ECHOLNPGM(STR_POWEROFF);
|
||||
|
||||
TERN_(HAS_SUICIDE, suicide());
|
||||
|
||||
if (!psu_on) return;
|
||||
|
||||
SERIAL_ECHOLNPGM(STR_POWEROFF);
|
||||
|
||||
#ifdef PSU_POWEROFF_GCODE
|
||||
gcode.process_subcommands_now(F(PSU_POWEROFF_GCODE));
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue