Explorar el Código

Merge pull request #4420 from thinkyhead/rc_allow_no_deploy_raise

Allow zero raise for deploy/stow
Scott Lahteine hace 8 años
padre
commit
9f1dd6d431
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2
    2
      Marlin/SanityCheck.cpp

+ 2
- 2
Marlin/SanityCheck.cpp Ver fichero

338
     #error "You must set Z_RAISE_PROBE_DEPLOY_STOW in your configuration."
338
     #error "You must set Z_RAISE_PROBE_DEPLOY_STOW in your configuration."
339
   #elif !defined(Z_RAISE_BETWEEN_PROBINGS)
339
   #elif !defined(Z_RAISE_BETWEEN_PROBINGS)
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 < 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
   #elif Z_RAISE_BETWEEN_PROBINGS < 1
343
   #elif Z_RAISE_BETWEEN_PROBINGS < 1
344
     #error "Probes need Z_RAISE_BETWEEN_PROBINGS >= 1."
344
     #error "Probes need Z_RAISE_BETWEEN_PROBINGS >= 1."
345
   #endif
345
   #endif

Loading…
Cancelar
Guardar