Sanity check homing bumps
This commit is contained in:
parent
a9a21db39f
commit
0951bffcc0
|
@ -9104,7 +9104,7 @@ void stop() {
|
||||||
*/
|
*/
|
||||||
void setup() {
|
void setup() {
|
||||||
|
|
||||||
#if ENABLED(DISABLE_JTAG)
|
#ifdef DISABLE_JTAG
|
||||||
// Disable JTAG on AT90USB chips to free up pins for IO
|
// Disable JTAG on AT90USB chips to free up pins for IO
|
||||||
MCUCR = 0x80;
|
MCUCR = 0x80;
|
||||||
MCUCR = 0x80;
|
MCUCR = 0x80;
|
||||||
|
|
|
@ -450,6 +450,13 @@
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Homing Bump
|
||||||
|
*/
|
||||||
|
#if X_HOME_BUMP_MM < 0 || Y_HOME_BUMP_MM < 0 || Z_HOME_BUMP_MM < 0
|
||||||
|
#error "[XYZ]_HOME_BUMP_MM must be greater than or equal to 0."
|
||||||
|
#endif
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Make sure Z_SAFE_HOMING point is reachable
|
* Make sure Z_SAFE_HOMING point is reachable
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in a new issue