From d7522152e1b8ed82b2e90eebb55b6eaaba29d921 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Jo=C3=A3o=20Br=C3=A1zio?= <jbrazio@gmail.com>
Date: Sat, 14 May 2016 01:35:05 +0100
Subject: [PATCH] Warn user about useless of individual axis homing and DELTA
 kinematics

---
 Marlin/SanityCheck.h | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/Marlin/SanityCheck.h b/Marlin/SanityCheck.h
index c2b1890378..8d5f4a317f 100644
--- a/Marlin/SanityCheck.h
+++ b/Marlin/SanityCheck.h
@@ -117,6 +117,13 @@
   #error EXTRUDER_RUNOUT_PREVENT currently incompatible with FILAMENTCHANGE.
 #endif
 
+/**
+ * Individual axis homing is useless for DELTAS
+ */
+#if ENABLED(INDIVIDUAL_AXIS_HOMING_MENU) && ENABLED(DELTA)
+  #error Individual axis homing will not work with a DELTA kinematics.
+#endif
+
 /**
  * Options only for EXTRUDERS > 1
  */
-- 
GitLab