Procházet zdrojové kódy

ADIMLab Granty pins/config (#14919)

ETE-Design před 4 roky
rodič
revize
4be98221f6

+ 2
- 0
Marlin/Makefile Zobrazit soubor

@@ -251,6 +251,8 @@ else ifeq ($(HARDWARE_MOTHERBOARD),1141)
251 251
 else ifeq ($(HARDWARE_MOTHERBOARD),1142)
252 252
 # Overlord/Overlord Pro
253 253
 else ifeq ($(HARDWARE_MOTHERBOARD),1143)
254
+# ADIMLab Granty
255
+else ifeq ($(HARDWARE_MOTHERBOARD),1144)
254 256
 
255 257
 #
256 258
 # RAMBo and derivatives

+ 1
- 0
Marlin/src/core/boards.h Zobrazit soubor

@@ -95,6 +95,7 @@
95 95
 #define BOARD_Z_BOLT_X_SERIES         1141  // Z-Bolt X Series
96 96
 #define BOARD_TT_OSCAR                1142  // TT OSCAR
97 97
 #define BOARD_OVERLORD                1143  // Overlord/Overlord Pro
98
+#define BOARD_HJC2560C_REV2           1144  // ADIMLab Granty
98 99
 
99 100
 //
100 101
 // RAMBo and derivatives

+ 170
- 0
Marlin/src/pins/mega/pins_HJC2560C_REV2.h Zobrazit soubor

@@ -0,0 +1,170 @@
1
+/**
2
+ * Marlin 3D Printer Firmware
3
+ * Copyright (c) 2019 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 <http://www.gnu.org/licenses/>.
20
+ *
21
+ */
22
+#pragma once
23
+
24
+/**
25
+ * HJC2560-C Rev2.x pin assignments
26
+ */
27
+
28
+#ifndef __AVR_ATmega2560__
29
+  #error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'"
30
+#endif
31
+
32
+#define DEFAULT_MACHINE_NAME "HCMaker7"
33
+#define BOARD_INFO_NAME      "HJC2560-C"
34
+
35
+//
36
+// Servos
37
+//
38
+//#ifndef SERVO0_PIN
39
+//  #define SERVO0_PIN       11
40
+//#endif
41
+
42
+//
43
+// Limit Switches
44
+//
45
+#define X_STOP_PIN         22
46
+#define Y_STOP_PIN         26
47
+#define Z_STOP_PIN         29
48
+//#define EXP_STOP_PIN       28
49
+
50
+//
51
+// Steppers
52
+//
53
+#define X_STEP_PIN         25
54
+#define X_DIR_PIN          23
55
+#define X_ENABLE_PIN       27
56
+
57
+#define Y_STEP_PIN         32
58
+#define Y_DIR_PIN          33
59
+#define Y_ENABLE_PIN       31
60
+
61
+#define Z_STEP_PIN         35
62
+#define Z_DIR_PIN          36
63
+#define Z_ENABLE_PIN       34
64
+
65
+#define E0_STEP_PIN        42
66
+#define E0_DIR_PIN         43
67
+#define E0_ENABLE_PIN      37
68
+
69
+#define E1_STEP_PIN        49
70
+#define E1_DIR_PIN         47
71
+#define E1_ENABLE_PIN      48
72
+
73
+#define MOTOR_CURRENT_PWM_XY_PIN   44
74
+#define MOTOR_CURRENT_PWM_Z_PIN    45
75
+#define MOTOR_CURRENT_PWM_E_PIN    46
76
+// Motor current PWM conversion, PWM value = MotorCurrentSetting * 255 / range
77
+#ifndef MOTOR_CURRENT_PWM_RANGE
78
+  #define MOTOR_CURRENT_PWM_RANGE  2000
79
+#endif
80
+#define DEFAULT_PWM_MOTOR_CURRENT  { 1300, 1300, 1250 }
81
+
82
+//
83
+// Temperature Sensors
84
+//
85
+#define TEMP_0_PIN          8   // Analog Input
86
+#define TEMP_1_PIN          9   // Analog Input
87
+#define TEMP_BED_PIN       10   // Analog Input
88
+
89
+//
90
+// Heaters / Fans
91
+//
92
+#define HEATER_0_PIN        2
93
+#define HEATER_1_PIN        3
94
+#define HEATER_BED_PIN      4
95
+
96
+#ifndef FAN_PIN
97
+  #define FAN_PIN           7   //默认不使用PWM_FAN冷却喷嘴,如果需要,则取消注释
98
+#endif
99
+
100
+//
101
+// Misc. Functions
102
+//
103
+#define SDSS               53
104
+#define SD_DETECT_PIN      39
105
+//#define LED_PIN           8
106
+#define CASE_LIGHT_PIN      8           // 8 默认挤出机风扇作为Case LED,如果需要PWM FAN,则需要将FAN_PIN置为7,LED_PIN置为8
107
+
108
+//#define SAFETY_TRIGGERED_PIN     28   // PIN to detect the safety circuit has triggered
109
+//#define MAIN_VOLTAGE_MEASURE_PIN 14   // ANALOG PIN to measure the main voltage, with a 100k - 4k7 resitor divider.
110
+
111
+//
112
+// M3/M4/M5 - Spindle/Laser Control
113
+//
114
+#if ENABLED(SPINDLE_LASER_ENABLE)
115
+  #define SPINDLE_DIR_PIN           16
116
+  #define SPINDLE_LASER_ENABLE_PIN  17   // Pin should have a pullup!
117
+  #define SPINDLE_LASER_PWM_PIN      9   // Hardware PWM
118
+#endif
119
+
120
+//
121
+// LCD / Controller
122
+//
123
+#if HAS_SPI_LCD
124
+
125
+  #define BEEPER_PIN       18
126
+
127
+  #if ENABLED(NEWPANEL)
128
+
129
+    #define LCD_PINS_RS     20   // LCD_CS
130
+    #define LCD_PINS_ENABLE 15   // LCD_SDA
131
+    #define LCD_PINS_D4     14   // LCD_SCK
132
+
133
+    #if ENABLED(HJC_LCD_SMART_CONTROLLER)
134
+      #define LCD_BACKLIGHT_PIN  5   // LCD_Backlight
135
+      //#ifndef LCD_CONTRAST_PIN
136
+      //  #define LCD_CONTRAST_PIN  5   // LCD_Contrast
137
+      //#endif
138
+      #ifndef FIL_RUNOUT_PIN
139
+        #define FIL_RUNOUT_PIN 24   // Filament runout
140
+      #endif
141
+    #else
142
+      #define LCD_PINS_D5  21
143
+      #define LCD_PINS_D6   5
144
+      #define LCD_PINS_D7   6
145
+    #endif
146
+
147
+    #define BTN_EN1        41
148
+    #define BTN_EN2        40
149
+    #define BTN_ENC        19
150
+
151
+    #define SD_DETECT_PIN  39
152
+
153
+  #else
154
+
155
+    // Buttons attached to a shift register
156
+    #define SHIFT_CLK      38
157
+    #define SHIFT_LD       42
158
+    #define SHIFT_OUT      40
159
+    #define SHIFT_EN       17
160
+
161
+    #define LCD_PINS_RS    16
162
+    #define LCD_PINS_ENABLE 5
163
+    #define LCD_PINS_D4     6
164
+    #define LCD_PINS_D5    21
165
+    #define LCD_PINS_D6    20
166
+    #define LCD_PINS_D7    19
167
+
168
+  #endif // !NEWPANEL
169
+
170
+#endif // HAS_SPI_LCD

+ 2
- 0
Marlin/src/pins/pins.h Zobrazit soubor

@@ -238,6 +238,8 @@
238 238
   #include "mega/pins_WANHAO_ONEPLUS.h"         // ATmega2560                             env:megaatmega2560
239 239
 #elif MB(OVERLORD)
240 240
   #include "mega/pins_OVERLORD.h"               // ATmega2560                             env:megaatmega2560
241
+#elif MB(HJC2560C_REV2)
242
+  #include "mega/pins_HJC2560C_REV2.h"          // ATmega2560                             env:megaatmega2560
241 243
 
242 244
 //
243 245
 // ATmega1281, ATmega2561

+ 2212
- 0
config/examples/ADIMLab/Granty/Configuration.h
Diff nebyl zobrazen, protože je příliš veliký
Zobrazit soubor


+ 2572
- 0
config/examples/ADIMLab/Granty/Configuration_adv.h
Diff nebyl zobrazen, protože je příliš veliký
Zobrazit soubor


+ 86
- 0
config/examples/ADIMLab/Granty/_Bootscreen.h Zobrazit soubor

@@ -0,0 +1,86 @@
1
+/**
2
+ * Marlin 3D Printer Firmware
3
+ * Copyright (c) 2019 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 <http://www.gnu.org/licenses/>.
20
+ *
21
+ */
22
+#pragma once
23
+
24
+/**
25
+ * Made with Marlin Bitmap Converter
26
+ * http://marlinfw.org/tools/u8glib/converter.html
27
+ */
28
+#define CUSTOM_BOOTSCREEN_BMPWIDTH 88
29
+
30
+const unsigned char custom_start_bmp[] PROGMEM = {
31
+  B00000000,B00000000,B00000000,B00001111,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,
32
+  B00000000,B00000000,B00000000,B00111111,B11111000,B00000000,B01000000,B00000000,B00000000,B00000000,B00000000,
33
+  B00000000,B00000000,B00011110,B01111111,B11111111,B00000000,B10000100,B00000000,B00000000,B00000000,B00000000,
34
+  B00000000,B00000000,B00111111,B11111111,B11111111,B11111111,B00000100,B00000000,B00000000,B00000000,B00000000,
35
+  B00000000,B00000000,B00111111,B11111111,B11111111,B11111110,B00001100,B00000000,B00000000,B00000000,B00000000,
36
+  B00000000,B00000000,B01111111,B11111111,B11111111,B11110000,B00001000,B00000000,B00000000,B00000000,B00000000,
37
+  B00000000,B00000000,B00001111,B11111111,B11100000,B00000000,B00011000,B00000000,B00000000,B00000000,B00000000,
38
+  B00000000,B00000000,B00000000,B11111111,B11100011,B10000000,B00111000,B00000000,B00000000,B00000000,B00000000,
39
+  B00000000,B00000000,B00010011,B11111111,B11100001,B10000000,B01111000,B00000000,B00000000,B00000000,B00000000,
40
+  B00000000,B00000000,B00011111,B10001111,B11100011,B10000000,B11110000,B00000000,B00000000,B00000000,B00000000,
41
+  B00000000,B00000000,B00011110,B00001111,B11111111,B10000001,B11110000,B00000000,B00000000,B00000000,B00000000,
42
+  B00000000,B00000000,B00000110,B00011111,B11111111,B10000111,B11100000,B00000000,B00000000,B00000000,B00000000,
43
+  B00000000,B00000000,B00000000,B11111111,B11111110,B00001111,B11100000,B00000000,B00000000,B00000000,B00000000,
44
+  B00000000,B00000000,B00000111,B11111111,B11110000,B01111111,B11000000,B00000000,B00000000,B00000000,B00000000,
45
+  B00000000,B00000000,B00001111,B11111100,B00000011,B11111111,B10000000,B00000000,B00000000,B00000000,B00000000,
46
+  B00000000,B00000000,B00011111,B11000000,B11111111,B11111111,B00000000,B00000000,B00000000,B00000000,B00000000,
47
+  B00000000,B00000000,B00111110,B00011111,B11111111,B11111110,B00111111,B11000000,B00000000,B00000000,B00000000,
48
+  B00000000,B00000000,B01111100,B11111111,B11111111,B11111100,B00001111,B11100000,B00000000,B00000000,B00000000,
49
+  B00000000,B00000000,B11111001,B11111111,B11111111,B11110000,B00001111,B11110000,B00000000,B00000000,B00000000,
50
+  B00000000,B00000000,B11110011,B11111111,B11111111,B11111000,B00011111,B11111000,B00000000,B00000000,B00000000,
51
+  B00000000,B00000000,B11100111,B11111111,B11111111,B11111111,B11111111,B11111100,B00000000,B00000000,B00000000,
52
+  B00000000,B00000001,B11101111,B11111111,B11111111,B11111111,B11111111,B11111110,B00000000,B00000000,B00000000,
53
+  B00000000,B00000001,B11101111,B11111110,B00001111,B11111111,B11111111,B11101111,B10000000,B00000000,B00000000,
54
+  B00000000,B00000001,B11001111,B11110000,B00000001,B11111111,B11111111,B11110011,B11111000,B00000000,B00000000,
55
+  B00000000,B00000000,B11101111,B11100000,B00000000,B11111111,B11111111,B11111000,B01100000,B00000000,B00000000,
56
+  B00000000,B00000000,B11101111,B11100000,B00000000,B00111111,B11111111,B11111000,B00000000,B00000000,B00000000,
57
+  B00000000,B00000000,B11101111,B11000000,B00000000,B00011111,B11111111,B11111000,B00000000,B00000000,B00000000,
58
+  B00000000,B00000000,B01100111,B11100100,B00000000,B00001111,B11111111,B11111100,B00000000,B00000000,B00000000,
59
+  B00000000,B00000000,B00110011,B11111100,B00000000,B00000111,B11111111,B11111100,B00000000,B00000000,B00000000,
60
+  B00000000,B00000000,B00011001,B11111100,B00000000,B00000011,B11100000,B11111100,B00000000,B00000000,B00000000,
61
+  B00000000,B00000000,B00001100,B01111000,B00000000,B00000001,B11100000,B00111100,B00000000,B00000000,B00000000,
62
+  B00000000,B00000000,B00000111,B00000000,B00000000,B00000000,B01110000,B00011100,B00000000,B00000000,B00000000,
63
+  B00000000,B00000000,B00000011,B10000000,B00000000,B00000000,B00000000,B00001110,B00000000,B00000000,B00000000,
64
+  B00000000,B00000000,B00000001,B11100000,B00000000,B00000000,B00000000,B00001111,B00000000,B00000000,B00000000,
65
+  B00000000,B00000000,B00000001,B11110000,B00000000,B00000000,B00000000,B00000111,B00000000,B00000000,B00000000,
66
+  B00000000,B00000000,B00000001,B11111000,B00000000,B00000000,B00000000,B00000111,B10000000,B00000000,B00000000,
67
+  B00000000,B00000000,B00000001,B11111100,B00000000,B00000000,B00000000,B00000111,B11000000,B00000000,B00000000,
68
+  B00000000,B00000000,B00000011,B11111100,B00000000,B00000000,B00000000,B00001111,B11000000,B00000000,B00000000,
69
+  B00000000,B00000000,B00000111,B11111100,B00000000,B00000000,B00000000,B00001111,B11100000,B00000000,B00000000,
70
+  B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,
71
+  B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,B00000000,
72
+  B00000111,B10000001,B11111111,B10000111,B10011111,B00000111,B10011110,B00000000,B00000000,B00111000,B00000000,
73
+  B00000111,B10000001,B11111111,B11000011,B10011111,B00000111,B10001110,B00000000,B00000000,B00111000,B00000000,
74
+  B00000111,B10000001,B11000011,B11100011,B10011111,B00000111,B10001110,B00000000,B00000000,B00111000,B00000000,
75
+  B00001111,B11000001,B11000000,B11100011,B10011111,B10001111,B10001110,B00000000,B00111100,B00111011,B00000000,
76
+  B00001111,B11000001,B11000000,B11100011,B10011111,B10001111,B10001110,B00000000,B11111110,B00111111,B10000000,
77
+  B00011101,B11000001,B11000000,B01110011,B10011111,B10011111,B10001110,B00000000,B11111111,B00111111,B10000000,
78
+  B00011100,B11100001,B11000000,B01110011,B10011101,B11011011,B10001110,B00000000,B01101111,B00111011,B11000000,
79
+  B00011100,B11100001,B11000000,B01110011,B10011101,B11111011,B10001110,B00000000,B00111111,B00111011,B11000000,
80
+  B00111111,B11110001,B11000000,B11100011,B10011100,B11111011,B10001110,B00000000,B11111111,B00111011,B11000000,
81
+  B00111111,B11110001,B11000000,B11100011,B10011100,B11110011,B10001110,B00000000,B11101111,B00111011,B11000000,
82
+  B01111000,B01110001,B11000001,B11100011,B10011100,B11110011,B10001110,B00000001,B11101111,B00111011,B11000000,
83
+  B01110000,B01111001,B11111111,B11000011,B10011100,B01100011,B10001111,B11111111,B11101111,B00111111,B10000000,
84
+  B01110000,B00111001,B11111111,B10000011,B10011100,B01100011,B10001111,B11111110,B11110111,B00111111,B10000000,
85
+  B11110000,B01111101,B11111111,B00000111,B10011110,B00000011,B11011111,B11111100,B01100111,B00100111,B00000000
86
+};

Loading…
Zrušit
Uložit