2017-09-06 11:28:31 +00:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
2020-02-03 14:00:57 +00:00
|
|
|
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
2017-09-06 11:28:31 +00:00
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
2019-06-28 04:57:50 +00:00
|
|
|
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
|
2017-09-06 11:28:31 +00: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
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2017-09-16 03:13:05 +00:00
|
|
|
#include "../../../inc/MarlinConfig.h"
|
|
|
|
|
|
|
|
#if ENABLED(NOZZLE_CLEAN_FEATURE)
|
|
|
|
|
|
|
|
#include "../../../libs/nozzle.h"
|
|
|
|
|
|
|
|
#include "../../gcode.h"
|
|
|
|
#include "../../parser.h"
|
|
|
|
#include "../../../module/motion.h"
|
|
|
|
|
2019-06-29 00:23:42 +00:00
|
|
|
#if HAS_LEVELING
|
|
|
|
#include "../../../module/planner.h"
|
|
|
|
#include "../../../feature/bedlevel/bedlevel.h"
|
|
|
|
#endif
|
|
|
|
|
2017-09-06 11:28:31 +00:00
|
|
|
/**
|
|
|
|
* G12: Clean the nozzle
|
2020-04-29 08:25:35 +00:00
|
|
|
*
|
|
|
|
* E<bool> : 0=Never or 1=Always apply the "software endstop" limits
|
|
|
|
* P0 S<strokes> : Stroke cleaning with S strokes
|
|
|
|
* P1 Sn T<objects> : Zigzag cleaning with S repeats and T zigzags
|
|
|
|
* P2 Sn R<radius> : Circle cleaning with S repeats and R radius
|
2017-09-06 11:28:31 +00:00
|
|
|
*/
|
2017-09-16 03:13:05 +00:00
|
|
|
void GcodeSuite::G12() {
|
2017-09-06 11:28:31 +00:00
|
|
|
// Don't allow nozzle cleaning without homing first
|
|
|
|
if (axis_unhomed_error()) return;
|
|
|
|
|
2020-07-22 06:42:44 +00:00
|
|
|
#ifdef WIPE_SEQUENCE_COMMANDS
|
|
|
|
if (!parser.seen_any()) {
|
|
|
|
gcode.process_subcommands_now_P(PSTR(WIPE_SEQUENCE_COMMANDS));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2017-09-06 11:28:31 +00:00
|
|
|
const uint8_t pattern = parser.ushortval('P', 0),
|
|
|
|
strokes = parser.ushortval('S', NOZZLE_CLEAN_STROKES),
|
|
|
|
objects = parser.ushortval('T', NOZZLE_CLEAN_TRIANGLES);
|
2020-04-29 08:25:35 +00:00
|
|
|
const float radius = parser.linearval('R', NOZZLE_CLEAN_CIRCLE_RADIUS);
|
2017-09-06 11:28:31 +00:00
|
|
|
|
2019-07-17 08:41:04 +00:00
|
|
|
const bool seenxyz = parser.seen("XYZ");
|
|
|
|
const uint8_t cleans = (!seenxyz || parser.boolval('X') ? _BV(X_AXIS) : 0)
|
|
|
|
| (!seenxyz || parser.boolval('Y') ? _BV(Y_AXIS) : 0)
|
2020-04-29 08:25:35 +00:00
|
|
|
| TERN(NOZZLE_CLEAN_NO_Z, 0, (!seenxyz || parser.boolval('Z') ? _BV(Z_AXIS) : 0))
|
2019-07-17 08:41:04 +00:00
|
|
|
;
|
2019-06-29 00:23:42 +00:00
|
|
|
|
|
|
|
#if HAS_LEVELING
|
2019-07-17 08:41:04 +00:00
|
|
|
// Disable bed leveling if cleaning Z
|
|
|
|
TEMPORARY_BED_LEVELING_STATE(!TEST(cleans, Z_AXIS) && planner.leveling_active);
|
2019-06-29 00:23:42 +00:00
|
|
|
#endif
|
2019-07-17 08:41:04 +00:00
|
|
|
|
2020-04-29 08:25:35 +00:00
|
|
|
TEMPORARY_SOFT_ENDSTOP_STATE(parser.boolval('E'));
|
|
|
|
|
2019-07-17 08:41:04 +00:00
|
|
|
nozzle.clean(pattern, strokes, radius, objects, cleans);
|
2017-09-06 11:28:31 +00:00
|
|
|
}
|
2017-09-16 03:13:05 +00:00
|
|
|
|
|
|
|
#endif // NOZZLE_CLEAN_FEATURE
|