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

116 lines
2.9 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
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
*/
2017-09-16 23:25:01 -05:00
#include "../gcode.h"
#include "../../module/temperature.h"
#include "../../module/stepper.h"
#include "../../module/printcounter.h" // for print_job_timer
2017-09-16 23:25:01 -05:00
#include "../../inc/MarlinConfig.h"
2018-10-30 16:34:45 -05:00
#if HAS_LCD_MENU
2017-09-16 23:25:01 -05:00
#include "../../lcd/ultralcd.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
#if ENABLED(AUTO_POWER_CONTROL)
#include "../../feature/power.h"
#endif
2017-09-16 23:25:01 -05:00
// Could be moved to a feature, but this is all the data
bool powersupply_on;
2017-09-16 23:25:01 -05:00
2020-03-02 12:03:43 -06:00
#if HAS_TRINAMIC_CONFIG
2017-12-15 15:03:14 -06:00
#include "../../feature/tmc_util.h"
2017-09-16 23:25:01 -05:00
#endif
/**
* 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')) {
serialprintPGM(powersupply_on ? PSTR("PS:1\n") : PSTR("PS:0\n"));
return;
}
PSU_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
2019-10-24 14:07:28 -05:00
OUT_WRITE(SUICIDE_PIN, !SUICIDE_PIN_INVERTING);
2017-09-16 23:25:01 -05:00
#endif
#if DISABLED(AUTO_POWER_CONTROL)
delay(PSU_POWERUP_DELAY); // Wait for power to settle
restore_stepper_drivers();
2017-12-15 15:03:14 -06:00
#endif
2018-10-30 16:34:45 -05:00
#if HAS_LCD_MENU
ui.reset_status();
2017-09-16 23:25:01 -05:00
#endif
}
2019-10-22 15:43:37 -05:00
#endif // ENABLED(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();
print_job_timer.stop();
planner.finish_and_disable();
#if FAN_COUNT > 0
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
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)
PSU_OFF();
#endif
2018-10-30 16:34:45 -05:00
#if HAS_LCD_MENU
LCD_MESSAGEPGM_P(PSTR(MACHINE_NAME " " STR_OFF "."));
#endif
}