Browse Source

Allow zero Z_RAISE_BETWEEN_PROBINGS

Scott Lahteine 8 years ago
parent
commit
ab4b2a66ff
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      Marlin/SanityCheck.cpp

+ 2
- 2
Marlin/SanityCheck.cpp View File

340
     #error "You must set Z_RAISE_BETWEEN_PROBINGS in your configuration."
340
     #error "You must set Z_RAISE_BETWEEN_PROBINGS in your configuration."
341
   #elif Z_RAISE_PROBE_DEPLOY_STOW < 0
341
   #elif Z_RAISE_PROBE_DEPLOY_STOW < 0
342
     #error "Probes need Z_RAISE_PROBE_DEPLOY_STOW >= 0."
342
     #error "Probes need Z_RAISE_PROBE_DEPLOY_STOW >= 0."
343
-  #elif Z_RAISE_BETWEEN_PROBINGS < 1
344
-    #error "Probes need Z_RAISE_BETWEEN_PROBINGS >= 1."
343
+  #elif Z_RAISE_BETWEEN_PROBINGS < 0
344
+    #error "Probes need Z_RAISE_BETWEEN_PROBINGS >= 0."
345
   #endif
345
   #endif
346
 
346
 
347
 #else
347
 #else

Loading…
Cancel
Save