Browse Source

Merge pull request #4420 from thinkyhead/rc_allow_no_deploy_raise

Allow zero raise for deploy/stow
Scott Lahteine 8 years ago
parent
commit
9f1dd6d431
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      Marlin/SanityCheck.cpp

+ 2
- 2
Marlin/SanityCheck.cpp View File

@@ -338,8 +338,8 @@
338 338
     #error "You must set Z_RAISE_PROBE_DEPLOY_STOW in your configuration."
339 339
   #elif !defined(Z_RAISE_BETWEEN_PROBINGS)
340 340
     #error "You must set Z_RAISE_BETWEEN_PROBINGS in your configuration."
341
-  #elif Z_RAISE_PROBE_DEPLOY_STOW < 1
342
-    #error "Probes need Z_RAISE_PROBE_DEPLOY_STOW >= 1."
341
+  #elif Z_RAISE_PROBE_DEPLOY_STOW < 0
342
+    #error "Probes need Z_RAISE_PROBE_DEPLOY_STOW >= 0."
343 343
   #elif Z_RAISE_BETWEEN_PROBINGS < 1
344 344
     #error "Probes need Z_RAISE_BETWEEN_PROBINGS >= 1."
345 345
   #endif

Loading…
Cancel
Save