| 1 |
ron |
1 |
/**
|
|
|
2 |
* Marlin 3D Printer Firmware
|
|
|
3 |
* Copyright (C) 2016 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 |
|
|
|
23 |
/**
|
|
|
24 |
* MKS GEN L V2 – Arduino Mega2560 with RAMPS v1.4 pin assignments
|
|
|
25 |
*/
|
|
|
26 |
|
|
|
27 |
#if HOTENDS > 2 || E_STEPPERS > 2
|
|
|
28 |
#error "MKS GEN L V2 supports up to 2 hotends / E-steppers. Comment out this line to continue."
|
|
|
29 |
#endif
|
|
|
30 |
|
|
|
31 |
#define BOARD_NAME "MKS GEN L V2"
|
|
|
32 |
|
|
|
33 |
//
|
|
|
34 |
// Servos
|
|
|
35 |
//
|
|
|
36 |
#ifndef SERVO1_PIN
|
|
|
37 |
#define SERVO1_PIN 12
|
|
|
38 |
#endif
|
|
|
39 |
#ifndef SERVO2_PIN
|
|
|
40 |
#define SERVO2_PIN 39
|
|
|
41 |
#endif
|
|
|
42 |
#ifndef SERVO3_PIN
|
|
|
43 |
#define SERVO3_PIN 32
|
|
|
44 |
#endif
|
|
|
45 |
|
|
|
46 |
//
|
|
|
47 |
// Heaters / Fans
|
|
|
48 |
//
|
|
|
49 |
|
|
|
50 |
// Power outputs EFBF or EFBE
|
|
|
51 |
#define MOSFET_D_PIN 7
|
|
|
52 |
|
|
|
53 |
//
|
|
|
54 |
// CS Pins wired to avoid conflict with the LCD
|
|
|
55 |
// See https://www.thingiverse.com/asset:66604
|
|
|
56 |
//
|
|
|
57 |
#ifndef X_CS_PIN
|
|
|
58 |
#define X_CS_PIN 63
|
|
|
59 |
#endif
|
|
|
60 |
#ifndef Y_CS_PIN
|
|
|
61 |
#define Y_CS_PIN 64
|
|
|
62 |
#endif
|
|
|
63 |
#ifndef Z_CS_PIN
|
|
|
64 |
#define Z_CS_PIN 65
|
|
|
65 |
#endif
|
|
|
66 |
#ifndef E0_CS_PIN
|
|
|
67 |
#define E0_CS_PIN 66
|
|
|
68 |
#endif
|
|
|
69 |
#ifndef E1_CS_PIN
|
|
|
70 |
#define E1_CS_PIN 21
|
|
|
71 |
#endif
|
|
|
72 |
|
|
|
73 |
// TMC2130 Diag Pins (currently just for reference)
|
|
|
74 |
#define X_DIAG_PIN 3
|
|
|
75 |
#define Y_DIAG_PIN 14
|
|
|
76 |
#define Z_DIAG_PIN 18
|
|
|
77 |
#define E0_DIAG_PIN 2
|
|
|
78 |
#define E1_DIAG_PIN 15
|
|
|
79 |
|
|
|
80 |
#ifndef E1_SERIAL_TX_PIN
|
|
|
81 |
#define E1_SERIAL_TX_PIN 20
|
|
|
82 |
#endif
|
|
|
83 |
#ifndef E1_SERIAL_RX_PIN
|
|
|
84 |
#define E1_SERIAL_RX_PIN 21
|
|
|
85 |
#endif
|
|
|
86 |
|
|
|
87 |
#include "pins_RAMPS.h"
|