|
@@ -20,6 +20,11 @@
|
20
|
20
|
*
|
21
|
21
|
*/
|
22
|
22
|
|
|
23
|
+/**
|
|
24
|
+ * 24 May 2018 - @chepo for STM32F103VET6
|
|
25
|
+ * Schematic: https://github.com/chepo92/Smartto/blob/master/circuit_diagram/Rostock301/Hardware_GTM32_PRO_VB.pdf
|
|
26
|
+ */
|
|
27
|
+
|
23
|
28
|
#ifndef __STM32F1__
|
24
|
29
|
#error "Oops! Make sure you have an STM32F1 board selected from the 'Tools -> Boards' menu."
|
25
|
30
|
#endif
|
|
@@ -28,7 +33,7 @@
|
28
|
33
|
#define BOARD_NAME "GTM32 Pro VB"
|
29
|
34
|
|
30
|
35
|
//#define DISABLE_DEBUG
|
31
|
|
-//#define DISABLE_JTAG
|
|
36
|
+#define DISABLE_JTAG
|
32
|
37
|
//#define DISABLE_JTAGSWD
|
33
|
38
|
|
34
|
39
|
// Ignore temp readings during development.
|
|
@@ -75,6 +80,8 @@
|
75
|
80
|
// Heaters / Fans
|
76
|
81
|
//
|
77
|
82
|
#define HEATER_0_PIN PB0
|
|
83
|
+#define HEATER_1_PIN PB5
|
|
84
|
+#define HEATER_2_PIN PB4
|
78
|
85
|
#define HEATER_BED_PIN PB1
|
79
|
86
|
|
80
|
87
|
#define FAN0_PIN PB7 // TODO: Add functionality
|
|
@@ -85,6 +92,8 @@
|
85
|
92
|
// Temperature Sensors
|
86
|
93
|
//
|
87
|
94
|
#define TEMP_0_PIN PC2 // PORT NUMBERING
|
|
95
|
+#define TEMP_1_PIN PC1 // PORT NUMBERING
|
|
96
|
+#define TEMP_2_PIN PC0 // PORT NUMBERING
|
88
|
97
|
#define TEMP_BED_PIN PC3 // PORT NUMBERING
|
89
|
98
|
|
90
|
99
|
//
|