2017-09-06 06:28:31 -05:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
2020-02-03 08:00:57 -06:00
|
|
|
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
2017-09-06 06:28:31 -05:00
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
2019-06-27 23:57:50 -05:00
|
|
|
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
|
2017-09-06 06:28:31 -05:00
|
|
|
*
|
|
|
|
* 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-06 06:28:31 -05:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
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"
|
|
|
|
|
2021-07-12 00:13:58 -05:00
|
|
|
#if ENABLED(PSU_CONTROL)
|
|
|
|
#include "../queue.h"
|
|
|
|
#include "../../feature/power.h"
|
|
|
|
#endif
|
|
|
|
|
2017-09-27 04:40:48 -05:00
|
|
|
#if HAS_SUICIDE
|
2020-01-02 19:01:38 -06:00
|
|
|
#include "../../MarlinCore.h"
|
2017-09-27 04:40:48 -05:00
|
|
|
#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')) {
|
2021-07-12 00:13:58 -05:00
|
|
|
SERIAL_ECHOPGM_P(powerManager.psu_on ? PSTR("PS:1\n") : PSTR("PS:0\n"));
|
2017-09-16 23:25:01 -05:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-07-12 00:13:58 -05:00
|
|
|
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
|
2021-08-13 16:32:25 -05:00
|
|
|
OUT_WRITE(SUICIDE_PIN, !SUICIDE_PIN_STATE);
|
2017-09-16 23:25:01 -05:00
|
|
|
#endif
|
|
|
|
|
2020-04-19 23:37:05 -05:00
|
|
|
TERN_(HAS_LCD_MENU, ui.reset_status());
|
2017-09-16 23:25:01 -05:00
|
|
|
}
|
|
|
|
|
2020-04-19 23:37:05 -05:00
|
|
|
#endif // PSU_CONTROL
|
2017-09-16 23:25:01 -05:00
|
|
|
|
2017-09-06 06:28:31 -05:00
|
|
|
/**
|
|
|
|
* M81: Turn off Power, including Power Supply, if there is one.
|
|
|
|
*
|
2019-08-28 00:51:01 -05:00
|
|
|
* This code should ALWAYS be available for FULL SHUTDOWN!
|
2017-09-06 06:28:31 -05:00
|
|
|
*/
|
2017-09-16 23:25:01 -05:00
|
|
|
void GcodeSuite::M81() {
|
2017-09-06 06:28:31 -05:00
|
|
|
thermalManager.disable_all_heaters();
|
2018-05-09 00:17:53 -05:00
|
|
|
planner.finish_and_disable();
|
2017-09-06 06:28:31 -05:00
|
|
|
|
2021-01-25 08:32:58 -06:00
|
|
|
print_job_timer.stop();
|
|
|
|
|
2020-04-27 04:41:18 -05:00
|
|
|
#if HAS_FAN
|
2019-01-12 00:41:48 -06:00
|
|
|
thermalManager.zero_fan_speeds();
|
2017-09-06 06:28:31 -05:00
|
|
|
#if ENABLED(PROBING_FANS_OFF)
|
2019-01-12 00:41:48 -06:00
|
|
|
thermalManager.fans_paused = false;
|
2019-05-07 14:14:12 -05:00
|
|
|
ZERO(thermalManager.saved_fan_speed);
|
2017-09-06 06:28:31 -05:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2021-06-23 11:40:32 -05:00
|
|
|
#if ENABLED(PS_OFF_SOUND)
|
|
|
|
BUZZ(1000, 659);
|
|
|
|
#endif
|
|
|
|
|
2017-09-06 06:28:31 -05:00
|
|
|
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)
|
2021-07-12 00:13:58 -05:00
|
|
|
powerManager.power_off_soon();
|
2017-09-06 06:28:31 -05:00
|
|
|
#endif
|
|
|
|
|
2020-08-13 21:30:12 -05:00
|
|
|
LCD_MESSAGEPGM_P(PSTR(MACHINE_NAME " " STR_OFF "."));
|
2017-09-06 06:28:31 -05:00
|
|
|
}
|