Browse Source

TRIGORILLA => TRIGORILLA_13

Scott Lahteine 7 years ago
parent
commit
80e29492c6

+ 1
- 1
Marlin/src/core/boards.h View File

@@ -76,7 +76,7 @@
76 76
 #define BOARD_RUMBA             80    // Rumba
77 77
 #define BOARD_BQ_ZUM_MEGA_3D    503   // bq ZUM Mega 3D
78 78
 #define BOARD_MAKEBOARD_MINI    431   // MakeBoard Mini v2.1.2 is a control board sold by MicroMake
79
-#define BOARD_TRIGORILLA        343   // TriGorilla Anycubic version 1.3 based on RAMPS EFB
79
+#define BOARD_TRIGORILLA_13     343   // TriGorilla Anycubic version 1.3 based on RAMPS EFB
80 80
 #define BOARD_RAMPS_ENDER_4     243   // Creality: Ender-4, CR-8
81 81
 
82 82
 //

+ 4
- 1
Marlin/src/inc/SanityCheck.h View File

@@ -272,9 +272,12 @@
272 272
   #error "FILAMENT_CHANGE_LOAD_LENGTH is now FILAMENT_CHANGE_FAST_LOAD_LENGTH. Please update your configuration."
273 273
 #endif
274 274
 
275
-#define BOARD_MKS_13 -47
275
+#define BOARD_MKS_13     -47
276
+#define BOARD_TRIGORILLA -343
276 277
 #if MB(MKS_13)
277 278
   #error "BOARD_MKS_13 has been renamed BOARD_MKS_GEN_13. Please update your configuration."
279
+#elif MB(BOARD_TRIGORILLA)
280
+  #error "BOARD_TRIGORILLA has been renamed BOARD_TRIGORILLA_13. Please update your configuration."
278 281
 #endif
279 282
 
280 283
 /**

+ 2
- 2
Marlin/src/pins/pins.h View File

@@ -136,8 +136,8 @@
136 136
   #include "pins_BQ_ZUM_MEGA_3D.h"    // ATmega2560
137 137
 #elif MB(MAKEBOARD_MINI)
138 138
   #include "pins_MAKEBOARD_MINI.h"    // ATmega2560
139
-#elif MB(TRIGORILLA)
140
-  #include "pins_TRIGORILLA.h"        // ATmega2560
139
+#elif MB(TRIGORILLA_13)
140
+  #include "pins_TRIGORILLA_13.h"     // ATmega2560
141 141
 
142 142
 //
143 143
 // Other ATmega1280, ATmega2560

Marlin/src/pins/pins_TRIGORILLA.h → Marlin/src/pins/pins_TRIGORILLA_13.h View File


Loading…
Cancel
Save