Browse Source

Creality v4.3.1 (Ender 6) board (#20512)

Sean McGroty 4 years ago
parent
commit
08dcd1f680
No account linked to committer's email address

+ 8
- 7
Marlin/src/core/boards.h View File

@@ -329,13 +329,14 @@
329 329
 #define BOARD_CHITU3D_V6              4036  // Chitu3D TronXY X5SA V5 Board
330 330
 #define BOARD_CREALITY_V4             4037  // Creality v4.x (STM32F103RE)
331 331
 #define BOARD_CREALITY_V427           4038  // Creality v4.2.7 (STM32F103RE)
332
-#define BOARD_CREALITY_V452           4039  // Creality v4.5.2 (STM32F103RE)
333
-#define BOARD_CREALITY_V453           4040  // Creality v4.5.3 (STM32F103RE)
334
-#define BOARD_TRIGORILLA_PRO          4041  // Trigorilla Pro (STM32F103ZET6)
335
-#define BOARD_FLY_MINI                4042  // FLY MINI (STM32F103RCT6)
336
-#define BOARD_FLSUN_HISPEED           4043  // FLSUN HiSpeedV1 (STM32F103VET6)
337
-#define BOARD_BEAST                   4044  // STM32F103RET6 Libmaple-based controller
338
-#define BOARD_BTT_SKR_CR6             4045  // BigTreeTech SKR CR6 v1.0 (STM32F103RE)
332
+#define BOARD_CREALITY_V431           4039  // Creality v4.3.1 (STM32F103RE)
333
+#define BOARD_CREALITY_V452           4040  // Creality v4.5.2 (STM32F103RE)
334
+#define BOARD_CREALITY_V453           4041  // Creality v4.5.3 (STM32F103RE)
335
+#define BOARD_TRIGORILLA_PRO          4042  // Trigorilla Pro (STM32F103ZET6)
336
+#define BOARD_FLY_MINI                4043  // FLY MINI (STM32F103RCT6)
337
+#define BOARD_FLSUN_HISPEED           4044  // FLSUN HiSpeedV1 (STM32F103VET6)
338
+#define BOARD_BEAST                   4045  // STM32F103RET6 Libmaple-based controller
339
+#define BOARD_BTT_SKR_CR6             4046  // BigTreeTech SKR CR6 v1.0 (STM32F103RE)
339 340
 
340 341
 //
341 342
 // ARM Cortex-M4F

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

@@ -530,6 +530,8 @@
530 530
   #include "stm32f1/pins_CREALITY_V4.h"         // STM32F1                                env:STM32F103RET6_creality
531 531
 #elif MB(CREALITY_V427)
532 532
   #include "stm32f1/pins_CREALITY_V427.h"       // STM32F1                                env:STM32F103RET6_creality
533
+#elif MB(CREALITY_V431)
534
+  #include "stm32f1/pins_CREALITY_V431.h"       // STM32F1                                env:STM32F103RET6_creality
533 535
 #elif MB(CREALITY_V452)
534 536
   #include "stm32f1/pins_CREALITY_V452.h"       // STM32F1                                env:STM32F103RET6_creality
535 537
 #elif MB(CREALITY_V453)

+ 0
- 4
Marlin/src/pins/stm32f1/pins_CREALITY_V427.h View File

@@ -24,10 +24,6 @@
24 24
  * CREALITY v4.2.7 (STM32F103) board pin assignments
25 25
  */
26 26
 
27
-#if NOT_TARGET(__STM32F1__)
28
-  #error "Oops! Select an STM32F1 board in 'Tools > Board.'"
29
-#endif
30
-
31 27
 #define BOARD_INFO_NAME      "Creality v4.2.7"
32 28
 #define DEFAULT_MACHINE_NAME "Creality3D"
33 29
 

+ 39
- 0
Marlin/src/pins/stm32f1/pins_CREALITY_V431.h View File

@@ -0,0 +1,39 @@
1
+/**
2
+ * Marlin 3D Printer Firmware
3
+ * Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
4
+ *
5
+ * Based on Sprinter and grbl.
6
+ * Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
7
+ *
8
+ * This program is free software: you can redistribute it and/or modify
9
+ * it under the terms of the GNU General Public License as published by
10
+ * the Free Software Foundation, either version 3 of the License, or
11
+ * (at your option) any later version.
12
+ *
13
+ * This program is distributed in the hope that it will be useful,
14
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
15
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16
+ * GNU General Public License for more details.
17
+ *
18
+ * You should have received a copy of the GNU General Public License
19
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
20
+ *
21
+ */
22
+
23
+/**
24
+ * CREALITY v4.3.1 (STM32F103) board pin assignments
25
+ */
26
+
27
+#define BOARD_INFO_NAME      "Creality v4.3.1"
28
+#define DEFAULT_MACHINE_NAME "Creality3D"
29
+
30
+//
31
+// Steppers
32
+//
33
+#define X_STEP_PIN                        PB8
34
+#define X_DIR_PIN                         PB7
35
+
36
+#define Y_STEP_PIN                        PC2
37
+#define Y_DIR_PIN                         PB9
38
+
39
+#include "pins_CREALITY_V4.h"

Loading…
Cancel
Save