Browse Source
Merge pull request #9384 from tcm0116/2.0.x-retract
[2.0.x] Clear retracted status when homing the Z axis
pull/1/head
Scott Lahteine
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
10 additions and
0 deletions
-
Marlin/src/module/motion.cpp
|
|
@ -55,6 +55,10 @@ |
|
|
|
#include "../feature/tmc_util.h" |
|
|
|
#endif |
|
|
|
|
|
|
|
#if ENABLED(FWRETRACT) |
|
|
|
#include "../feature/fwretract.h" |
|
|
|
#endif |
|
|
|
|
|
|
|
#define XYZ_CONSTS(type, array, CONFIG) const PROGMEM type array##_P[XYZ] = { X_##CONFIG, Y_##CONFIG, Z_##CONFIG } |
|
|
|
|
|
|
|
XYZ_CONSTS(float, base_min_pos, MIN_POS); |
|
|
@ -1285,6 +1289,12 @@ void homeaxis(const AxisEnum axis) { |
|
|
|
if (axis == Z_AXIS && STOW_PROBE()) return; |
|
|
|
#endif |
|
|
|
|
|
|
|
// Clear retracted status if homing the Z axis
|
|
|
|
#if ENABLED(FWRETRACT) |
|
|
|
if (axis == Z_AXIS) |
|
|
|
for (uint8_t i = 0; i < EXTRUDERS; i++) fwretract.retracted[i] = false; |
|
|
|
#endif |
|
|
|
|
|
|
|
#if ENABLED(DEBUG_LEVELING_FEATURE) |
|
|
|
if (DEBUGGING(LEVELING)) { |
|
|
|
SERIAL_ECHOPAIR("<<< homeaxis(", axis_codes[axis]); |
|
|
|