Browse Source

Patch for missing DELTA_HEIGHT

pull/1/head
Scott Lahteine 7 years ago
parent
commit
1823a6ea29
  1. 7
      Marlin/Conditionals_post.h

7
Marlin/Conditionals_post.h

@ -119,6 +119,13 @@
#define Z_HOME_POS (Z_HOME_DIR < 0 ? Z_MIN_POS : Z_MAX_POS)
#endif
/**
* If DELTA_HEIGHT isn't defined use the old setting
*/
#if ENABLED(DELTA) && !defined(DELTA_HEIGHT)
#define DELTA_HEIGHT Z_HOME_POS
#endif
/**
* Auto Bed Leveling and Z Probe Repeatability Test
*/

Loading…
Cancel
Save