From b105e47cb5892208871571226f3c014fd3073f5c Mon Sep 17 00:00:00 2001
From: Scott Lahteine <thinkyhead@users.noreply.github.com>
Date: Wed, 27 Sep 2017 10:39:44 -0500
Subject: [PATCH] Move SERVO0 pin on GT2560 A+ with BLTOUCH enabled

Based on #7769
---
 Marlin/pins_GT2560_REV_A_PLUS.h | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/Marlin/pins_GT2560_REV_A_PLUS.h b/Marlin/pins_GT2560_REV_A_PLUS.h
index 7eed3b8595..16660e0d16 100644
--- a/Marlin/pins_GT2560_REV_A_PLUS.h
+++ b/Marlin/pins_GT2560_REV_A_PLUS.h
@@ -29,4 +29,8 @@
 #undef BOARD_NAME
 #define BOARD_NAME  "GT2560 Rev.A+"
 
-#define SERVO0_PIN  11
+#if ENABLED(BLTOUCH)
+  #define SERVO0_PIN  32
+#else
+  #define SERVO0_PIN  11
+#endif