From 80e29492c6894c52b7695ab325ad792b19005684 Mon Sep 17 00:00:00 2001
From: Scott Lahteine <github@thinkyhead.com>
Date: Mon, 2 Apr 2018 22:01:02 -0500
Subject: [PATCH] TRIGORILLA => TRIGORILLA_13

---
 Marlin/src/core/boards.h                                    | 2 +-
 Marlin/src/inc/SanityCheck.h                                | 5 ++++-
 Marlin/src/pins/pins.h                                      | 4 ++--
 Marlin/src/pins/{pins_TRIGORILLA.h => pins_TRIGORILLA_13.h} | 0
 4 files changed, 7 insertions(+), 4 deletions(-)
 rename Marlin/src/pins/{pins_TRIGORILLA.h => pins_TRIGORILLA_13.h} (100%)

diff --git a/Marlin/src/core/boards.h b/Marlin/src/core/boards.h
index 957f0bad81..8382b4517d 100644
--- a/Marlin/src/core/boards.h
+++ b/Marlin/src/core/boards.h
@@ -76,7 +76,7 @@
 #define BOARD_RUMBA             80    // Rumba
 #define BOARD_BQ_ZUM_MEGA_3D    503   // bq ZUM Mega 3D
 #define BOARD_MAKEBOARD_MINI    431   // MakeBoard Mini v2.1.2 is a control board sold by MicroMake
-#define BOARD_TRIGORILLA        343   // TriGorilla Anycubic version 1.3 based on RAMPS EFB
+#define BOARD_TRIGORILLA_13     343   // TriGorilla Anycubic version 1.3 based on RAMPS EFB
 #define BOARD_RAMPS_ENDER_4     243   // Creality: Ender-4, CR-8
 
 //
diff --git a/Marlin/src/inc/SanityCheck.h b/Marlin/src/inc/SanityCheck.h
index 898f38d97f..23372ef883 100644
--- a/Marlin/src/inc/SanityCheck.h
+++ b/Marlin/src/inc/SanityCheck.h
@@ -272,9 +272,12 @@
   #error "FILAMENT_CHANGE_LOAD_LENGTH is now FILAMENT_CHANGE_FAST_LOAD_LENGTH. Please update your configuration."
 #endif
 
-#define BOARD_MKS_13 -47
+#define BOARD_MKS_13     -47
+#define BOARD_TRIGORILLA -343
 #if MB(MKS_13)
   #error "BOARD_MKS_13 has been renamed BOARD_MKS_GEN_13. Please update your configuration."
+#elif MB(BOARD_TRIGORILLA)
+  #error "BOARD_TRIGORILLA has been renamed BOARD_TRIGORILLA_13. Please update your configuration."
 #endif
 
 /**
diff --git a/Marlin/src/pins/pins.h b/Marlin/src/pins/pins.h
index cb3e3c53d0..dad6397cc4 100644
--- a/Marlin/src/pins/pins.h
+++ b/Marlin/src/pins/pins.h
@@ -136,8 +136,8 @@
   #include "pins_BQ_ZUM_MEGA_3D.h"    // ATmega2560
 #elif MB(MAKEBOARD_MINI)
   #include "pins_MAKEBOARD_MINI.h"    // ATmega2560
-#elif MB(TRIGORILLA)
-  #include "pins_TRIGORILLA.h"        // ATmega2560
+#elif MB(TRIGORILLA_13)
+  #include "pins_TRIGORILLA_13.h"     // ATmega2560
 
 //
 // Other ATmega1280, ATmega2560
diff --git a/Marlin/src/pins/pins_TRIGORILLA.h b/Marlin/src/pins/pins_TRIGORILLA_13.h
similarity index 100%
rename from Marlin/src/pins/pins_TRIGORILLA.h
rename to Marlin/src/pins/pins_TRIGORILLA_13.h