2017-09-06 06:28:31 -05:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
|
|
|
* Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
|
|
|
* 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:57:09 -05:00
|
|
|
#include "../gcode.h"
|
2019-01-19 21:50:33 -06:00
|
|
|
#include "../../Marlin.h" // for stepper_inactive_time, disable_e_steppers
|
2017-09-23 18:09:14 -05:00
|
|
|
#include "../../lcd/ultralcd.h"
|
2017-09-16 23:57:09 -05:00
|
|
|
#include "../../module/stepper.h"
|
|
|
|
|
2017-09-06 06:28:31 -05:00
|
|
|
#if ENABLED(AUTO_BED_LEVELING_UBL) && ENABLED(ULTRA_LCD)
|
2017-09-16 23:57:09 -05:00
|
|
|
#include "../../feature/bedlevel/bedlevel.h"
|
2017-09-06 06:28:31 -05:00
|
|
|
#endif
|
|
|
|
|
2017-09-23 18:09:14 -05:00
|
|
|
/**
|
|
|
|
* M17: Enable power on all stepper motors
|
|
|
|
*/
|
|
|
|
void GcodeSuite::M17() {
|
|
|
|
LCD_MESSAGEPGM(MSG_NO_MOVE);
|
|
|
|
enable_all_steppers();
|
|
|
|
}
|
|
|
|
|
2017-09-06 06:28:31 -05:00
|
|
|
/**
|
|
|
|
* M18, M84: Disable stepper motors
|
|
|
|
*/
|
2017-09-16 23:57:09 -05:00
|
|
|
void GcodeSuite::M18_M84() {
|
2017-09-06 06:28:31 -05:00
|
|
|
if (parser.seenval('S')) {
|
|
|
|
stepper_inactive_time = parser.value_millis_from_seconds();
|
|
|
|
}
|
|
|
|
else {
|
2017-12-31 00:26:45 -06:00
|
|
|
bool all_axis = !(parser.seen('X') || parser.seen('Y') || parser.seen('Z') || parser.seen('E'));
|
2017-09-06 06:28:31 -05:00
|
|
|
if (all_axis) {
|
2018-05-09 00:17:53 -05:00
|
|
|
planner.finish_and_disable();
|
2017-09-06 06:28:31 -05:00
|
|
|
}
|
|
|
|
else {
|
2018-05-12 01:38:02 -05:00
|
|
|
planner.synchronize();
|
2017-09-06 06:28:31 -05:00
|
|
|
if (parser.seen('X')) disable_X();
|
|
|
|
if (parser.seen('Y')) disable_Y();
|
|
|
|
if (parser.seen('Z')) disable_Z();
|
2018-10-06 17:18:10 -05:00
|
|
|
// Only disable on boards that have separate ENABLE_PINS or another method for disabling the driver
|
2019-01-23 19:06:54 -06:00
|
|
|
#if (E0_ENABLE_PIN != X_ENABLE_PIN && E1_ENABLE_PIN != Y_ENABLE_PIN) || AXIS_DRIVER_TYPE_E0(TMC2660) || AXIS_DRIVER_TYPE_E1(TMC2660) || AXIS_DRIVER_TYPE_E2(TMC2660) || AXIS_DRIVER_TYPE_E3(TMC2660) || AXIS_DRIVER_TYPE_E4(TMC2660) || AXIS_DRIVER_TYPE_E5(TMC2660)
|
2017-09-06 06:28:31 -05:00
|
|
|
if (parser.seen('E')) disable_e_steppers();
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2018-10-30 16:34:45 -05:00
|
|
|
#if HAS_LCD_MENU && ENABLED(AUTO_BED_LEVELING_UBL)
|
2018-11-06 19:25:57 -06:00
|
|
|
if (ubl.lcd_map_control) {
|
|
|
|
ubl.lcd_map_control = false;
|
2018-11-11 12:16:24 -06:00
|
|
|
ui.defer_status_screen(false);
|
2018-11-06 19:25:57 -06:00
|
|
|
}
|
2017-09-06 06:28:31 -05:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|