| 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 |
* Ultiboard v2.0 pin assignments
|
|
|
25 |
*/
|
|
|
26 |
|
|
|
27 |
/**
|
|
|
28 |
* Rev B 2 JAN 2017
|
|
|
29 |
*
|
|
|
30 |
* Added pin definitions for:
|
|
|
31 |
* M3, M4 & M5 spindle control commands
|
|
|
32 |
* case light
|
|
|
33 |
*/
|
|
|
34 |
|
|
|
35 |
#ifndef __AVR_ATmega2560__
|
|
|
36 |
#error "Oops! Make sure you have 'Arduino Mega 2560' selected from the 'Tools -> Boards' menu."
|
|
|
37 |
#endif
|
|
|
38 |
|
|
|
39 |
#define DEFAULT_MACHINE_NAME "Ultimaker"
|
|
|
40 |
#define DEFAULT_SOURCE_CODE_URL "https://github.com/Ultimaker/Marlin"
|
|
|
41 |
#define BOARD_NAME "Ultimaker 2.x"
|
|
|
42 |
|
|
|
43 |
//
|
|
|
44 |
// Limit Switches
|
|
|
45 |
//
|
|
|
46 |
#define X_STOP_PIN 22
|
|
|
47 |
#define Y_STOP_PIN 26
|
|
|
48 |
#define Z_STOP_PIN 29
|
|
|
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
|
|
|
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 SAFETY_TRIGGERED_PIN 28 // PIN to detect the safety circuit has triggered
|
|
|
107 |
#define MAIN_VOLTAGE_MEASURE_PIN 14 // ANALOG PIN to measure the main voltage, with a 100k - 4k7 resitor divider.
|
|
|
108 |
|
|
|
109 |
//
|
|
|
110 |
// LCD / Controller
|
|
|
111 |
//
|
|
|
112 |
#define BEEPER_PIN 18
|
|
|
113 |
|
|
|
114 |
#define LCD_PINS_RS 20
|
|
|
115 |
#define LCD_PINS_ENABLE 15
|
|
|
116 |
#define LCD_PINS_D4 14
|
|
|
117 |
#define LCD_PINS_D5 21
|
|
|
118 |
#define LCD_PINS_D6 5
|
|
|
119 |
#define LCD_PINS_D7 6
|
|
|
120 |
|
|
|
121 |
// Buttons are directly attached
|
|
|
122 |
#define BTN_EN1 40
|
|
|
123 |
#define BTN_EN2 41
|
|
|
124 |
#define BTN_ENC 19
|
|
|
125 |
|
|
|
126 |
//
|
|
|
127 |
// M3/M4/M5 - Spindle/Laser Control
|
|
|
128 |
//
|
|
|
129 |
#if ENABLED(SPINDLE_LASER_ENABLE) // use the LED_PIN for spindle speed control or case light
|
|
|
130 |
#undef LED_PIN
|
|
|
131 |
#define SPINDLE_DIR_PIN 16
|
|
|
132 |
#define SPINDLE_LASER_ENABLE_PIN 17 // Pin should have a pullup!
|
|
|
133 |
#define SPINDLE_LASER_PWM_PIN 8 // MUST BE HARDWARE PWM
|
|
|
134 |
#else
|
|
|
135 |
#undef LED_PIN
|
|
|
136 |
#define CASE_LIGHT_PIN 8
|
|
|
137 |
#endif
|