Filling in more places where Z_PROBE_PIN and Z_PROBE_AND_ENDSTOP need to

be.
Added Sanity Check for it.
Added hook so it's enabled.
This commit is contained in:
Chris Roadfeldt
2015-03-28 05:55:42 -05:00
parent fd823449ad
commit 8b81f20c61
3 changed files with 12 additions and 6 deletions

View File

@ -90,13 +90,14 @@
* Require a Z Min pin
*/
#if Z_MIN_PIN == -1
#ifdef Z_PROBE_REPEATABILITY_TEST
#error You must have a Z_MIN endstop to enable Z_PROBE_REPEATABILITY_TEST.
#else
#error ENABLE_AUTO_BED_LEVELING requires a Z_MIN endstop. Z_MIN_PIN must point to a valid hardware pin.
#if Z_PROBE_PIN == -1
#ifdef Z_PROBE_REPEATABILITY_TEST
#error You must have a Z_MIN endstop to enable Z_PROBE_REPEATABILITY_TEST.
#else
#error ENABLE_AUTO_BED_LEVELING requires a Z_MIN or Z_PROBE endstop. Z_MIN_PIN or Z_PROBE_PIN must point to a valid hardware pin.
#endif
#endif
#endif
/**
* Check if Probe_Offset * Grid Points is greater than Probing Range
*/