Marlin_Firmware/Marlin/src/gcode/control/M80_M81.cpp

104 lines
2.7 KiB
C++
Raw Normal View History

/**
* Marlin 3D Printer Firmware
2020-02-03 08:00:57 -06:00
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
*
* Based on Sprinter and grbl.
2019-06-27 23:57:50 -05:00
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
2020-07-22 22:20:14 -05:00
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
*/
2017-09-16 23:25:01 -05:00
#include "../gcode.h"
2020-08-14 00:32:59 -05:00
2017-09-16 23:25:01 -05:00
#include "../../module/temperature.h"
2020-08-14 00:32:59 -05:00
#include "../../module/planner.h" // for planner.finish_and_disable
#include "../../module/printcounter.h" // for print_job_timer.stop
2020-10-16 19:36:25 -05:00
#include "../../lcd/marlinui.h" // for LCD_MESSAGEPGM_P
2017-09-16 23:25:01 -05:00
#include "../../inc/MarlinConfig.h"
#if ENABLED(PSU_CONTROL)
#include "../queue.h"
#include "../../feature/power.h"
#endif
#if HAS_SUICIDE
#include "../../MarlinCore.h"
#endif
2019-10-22 15:43:37 -05:00
#if ENABLED(PSU_CONTROL)
2017-09-16 23:25:01 -05:00
/**
* M80 : Turn on the Power Supply
* M80 S : Report the current state and exit
*/
void GcodeSuite::M80() {
// S: Report the current power supply state and exit
if (parser.seen('S')) {
SERIAL_ECHOPGM_P(powerManager.psu_on ? PSTR("PS:1\n") : PSTR("PS:0\n"));
2017-09-16 23:25:01 -05:00
return;
}
powerManager.power_on();
2017-09-16 23:25:01 -05:00
/**
* If you have a switch on suicide pin, this is useful
* if you want to start another print with suicide feature after
* a print without suicide...
*/
#if HAS_SUICIDE
OUT_WRITE(SUICIDE_PIN, !SUICIDE_PIN_STATE);
2017-09-16 23:25:01 -05:00
#endif
TERN_(HAS_LCD_MENU, ui.reset_status());
2017-09-16 23:25:01 -05:00
}
#endif // PSU_CONTROL
2017-09-16 23:25:01 -05:00
/**
* M81: Turn off Power, including Power Supply, if there is one.
*
* This code should ALWAYS be available for FULL SHUTDOWN!
*/
2017-09-16 23:25:01 -05:00
void GcodeSuite::M81() {
thermalManager.disable_all_heaters();
planner.finish_and_disable();
2021-01-25 08:32:58 -06:00
print_job_timer.stop();
2020-04-27 04:41:18 -05:00
#if HAS_FAN
thermalManager.zero_fan_speeds();
#if ENABLED(PROBING_FANS_OFF)
thermalManager.fans_paused = false;
2019-05-07 14:14:12 -05:00
ZERO(thermalManager.saved_fan_speed);
#endif
#endif
#if ENABLED(PS_OFF_SOUND)
BUZZ(1000, 659);
#endif
safe_delay(1000); // Wait 1 second before switching off
#if HAS_SUICIDE
suicide();
2019-10-22 15:43:37 -05:00
#elif ENABLED(PSU_CONTROL)
powerManager.power_off_soon();
#endif
2020-08-13 21:30:12 -05:00
LCD_MESSAGEPGM_P(PSTR(MACHINE_NAME " " STR_OFF "."));
}