|
|
@ -42,32 +42,25 @@ void GcodeSuite::G12() { |
|
|
|
// Don't allow nozzle cleaning without homing first
|
|
|
|
if (axis_unhomed_error()) return; |
|
|
|
|
|
|
|
const bool seenxyz = parser.seen("XYZ"), |
|
|
|
clean_x = !seenxyz || parser.boolval('X'), |
|
|
|
clean_y = !seenxyz || parser.boolval('Y'); |
|
|
|
|
|
|
|
#if ENABLED(NOZZLE_CLEAN_NO_Z) |
|
|
|
static constexpr bool clean_z = false; |
|
|
|
#else |
|
|
|
const bool clean_z = !seenxyz || parser.boolval('Z'); |
|
|
|
#endif |
|
|
|
|
|
|
|
const uint8_t pattern = parser.ushortval('P', 0), |
|
|
|
strokes = parser.ushortval('S', NOZZLE_CLEAN_STROKES), |
|
|
|
objects = parser.ushortval('T', NOZZLE_CLEAN_TRIANGLES); |
|
|
|
const float radius = parser.floatval('R', NOZZLE_CLEAN_CIRCLE_RADIUS); |
|
|
|
|
|
|
|
#if HAS_LEVELING |
|
|
|
const bool was_enabled = planner.leveling_active; |
|
|
|
if (clean_z) set_bed_leveling_enabled(false); |
|
|
|
#endif |
|
|
|
|
|
|
|
Nozzle::clean(pattern, strokes, radius, objects, clean_x, clean_y, clean_z); |
|
|
|
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) |
|
|
|
#if DISABLED(NOZZLE_CLEAN_NO_Z) |
|
|
|
| (!seenxyz || parser.boolval('Z') ? _BV(Z_AXIS) : 0) |
|
|
|
#endif |
|
|
|
; |
|
|
|
|
|
|
|
// Re-enable bed level correction if it had been on
|
|
|
|
#if HAS_LEVELING |
|
|
|
if (clean_z) set_bed_leveling_enabled(was_enabled); |
|
|
|
// Disable bed leveling if cleaning Z
|
|
|
|
TEMPORARY_BED_LEVELING_STATE(!TEST(cleans, Z_AXIS) && planner.leveling_active); |
|
|
|
#endif |
|
|
|
|
|
|
|
nozzle.clean(pattern, strokes, radius, objects, cleans); |
|
|
|
} |
|
|
|
|
|
|
|
#endif // NOZZLE_CLEAN_FEATURE
|
|
|
|