1 |
ron |
1 |
/**
|
|
|
2 |
* Marlin 3D Printer Firmware
|
|
|
3 |
* Copyright (C) 2017 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 |
* Rev B 2 JUN 2017
|
|
|
25 |
*
|
|
|
26 |
* Converted to Arduino pin numbering
|
|
|
27 |
*/
|
|
|
28 |
|
|
|
29 |
/**
|
|
|
30 |
* There are two Arduino IDE extensions that are compatible with this board
|
|
|
31 |
* and with the mainstream Marlin software.
|
|
|
32 |
*
|
|
|
33 |
* Teensyduino - http://www.pjrc.com/teensy/teensyduino.html
|
|
|
34 |
* Select Teensy++ 2.0 in Arduino IDE from the 'Tools -> Boards' menu
|
|
|
35 |
*
|
|
|
36 |
* Installation instructions are at the above URL. Don't bother loading the
|
|
|
37 |
* libraries - they are not used with the Marlin software.
|
|
|
38 |
*
|
|
|
39 |
* Printrboard - https://github.com/scwimbush/Printrboard-HID-Arduino-IDE-Support
|
|
|
40 |
*
|
|
|
41 |
* Installation:
|
|
|
42 |
*
|
|
|
43 |
* 1. Go to the above URL, click on the "Clone or Download" button and then
|
|
|
44 |
* click on "Download ZIP" button.
|
|
|
45 |
* 2. Unzip the file, find the "printrboard" directory and then copy it to the
|
|
|
46 |
* hardware directory in Arduino. The Arduino hardware directory will probably
|
|
|
47 |
* be located in a path similar to this: C:\Program Files (x86)\Arduino\hardware.
|
|
|
48 |
* 3. Restart Arduino.
|
|
|
49 |
* 4. Select "Printrboard" from the 'Tools -> Boards' menu.
|
|
|
50 |
*
|
|
|
51 |
* Teensyduino is the most popular option. Printrboard is used if your board doesn't have
|
|
|
52 |
* the Teensyduino bootloader on it.
|
|
|
53 |
*/
|
|
|
54 |
|
|
|
55 |
/**
|
|
|
56 |
* To burn the bootloader that comes with Printrboard:
|
|
|
57 |
*
|
|
|
58 |
* 1. Connect your programmer to the board.
|
|
|
59 |
* 2. In the Arduino IDE select "Printrboard" and then select the programmer.
|
|
|
60 |
* 3. In the Arduino IDE click on "burn bootloader". Don't worry about the "verify failed at 1F000" error message.
|
|
|
61 |
* 4. The programmer is no longer needed. Remove it.
|
|
|
62 |
*/
|
|
|
63 |
|
|
|
64 |
#ifndef __AVR_AT90USB1286__
|
|
|
65 |
#error "Oops! Make sure you have 'Teensy++ 2.0' or 'Printrboard' selected from the 'Tools -> Boards' menu."
|
|
|
66 |
#endif
|
|
|
67 |
|
|
|
68 |
#define BOARD_NAME "Printrboard"
|
|
|
69 |
|
|
|
70 |
// Disable JTAG pins so they can be used for the Extrudrboard
|
|
|
71 |
#define DISABLE_JTAG
|
|
|
72 |
|
|
|
73 |
//
|
|
|
74 |
// Limit Switches
|
|
|
75 |
//
|
|
|
76 |
#define X_STOP_PIN 47 // E3
|
|
|
77 |
#define Y_STOP_PIN 20 // B0 SS
|
|
|
78 |
#define Z_STOP_PIN 36 // E4
|
|
|
79 |
|
|
|
80 |
//
|
|
|
81 |
// Steppers
|
|
|
82 |
//
|
|
|
83 |
#define X_STEP_PIN 28 // A0
|
|
|
84 |
#define X_DIR_PIN 29 // A1
|
|
|
85 |
#define X_ENABLE_PIN 19 // E7
|
|
|
86 |
|
|
|
87 |
#define Y_STEP_PIN 30 // A2
|
|
|
88 |
#define Y_DIR_PIN 31 // A3
|
|
|
89 |
#define Y_ENABLE_PIN 18 // E6
|
|
|
90 |
|
|
|
91 |
#define Z_STEP_PIN 32 // A4
|
|
|
92 |
#define Z_DIR_PIN 33 // A5
|
|
|
93 |
#define Z_ENABLE_PIN 17 // C7
|
|
|
94 |
|
|
|
95 |
#define E0_STEP_PIN 34 // A6
|
|
|
96 |
#define E0_DIR_PIN 35 // A7
|
|
|
97 |
#define E0_ENABLE_PIN 13 // C3
|
|
|
98 |
|
|
|
99 |
//
|
|
|
100 |
// Temperature Sensors
|
|
|
101 |
//
|
|
|
102 |
#define TEMP_0_PIN 1 // Analog Input
|
|
|
103 |
#define TEMP_BED_PIN 0 // Analog Input
|
|
|
104 |
|
|
|
105 |
//
|
|
|
106 |
// Heaters / Fans
|
|
|
107 |
//
|
|
|
108 |
#define HEATER_0_PIN 15 // C5 PWM3B - Extruder
|
|
|
109 |
#define HEATER_1_PIN 44 // F6
|
|
|
110 |
#define HEATER_2_PIN 45 // F7
|
|
|
111 |
#define HEATER_BED_PIN 14 // C4 PWM3C
|
|
|
112 |
|
|
|
113 |
#ifndef FAN_PIN
|
|
|
114 |
#define FAN_PIN 16 // C6 PWM3A
|
|
|
115 |
#endif
|
|
|
116 |
|
|
|
117 |
//
|
|
|
118 |
// Misc. Functions
|
|
|
119 |
//
|
|
|
120 |
#define SDSS 26 // B6 SDCS
|
|
|
121 |
#define FILWIDTH_PIN 2 // Analog Input
|
|
|
122 |
|
|
|
123 |
//
|
|
|
124 |
// LCD / Controller
|
|
|
125 |
//
|
|
|
126 |
#if ENABLED(ULTRA_LCD) && ENABLED(NEWPANEL)
|
|
|
127 |
|
|
|
128 |
#define LCD_PINS_RS 9 // E1 JP11-11
|
|
|
129 |
#define LCD_PINS_ENABLE 8 // E0 JP11-10
|
|
|
130 |
#define LCD_PINS_D4 7 // D7 JP11-8
|
|
|
131 |
#define LCD_PINS_D5 6 // D6 JP11-7
|
|
|
132 |
#define LCD_PINS_D6 5 // D5 JP11-6
|
|
|
133 |
#define LCD_PINS_D7 4 // D4 JP11-5
|
|
|
134 |
|
|
|
135 |
#if ENABLED(VIKI2) || ENABLED(miniVIKI)
|
|
|
136 |
#define BEEPER_PIN 8 // E0 JP11-10
|
|
|
137 |
|
|
|
138 |
#define DOGLCD_A0 40 // F2 JP2-2
|
|
|
139 |
#define DOGLCD_CS 41 // F3 JP2-4
|
|
|
140 |
#define LCD_SCREEN_ROT_180
|
|
|
141 |
|
|
|
142 |
#define BTN_EN1 2 // D2 TX1 JP2-5
|
|
|
143 |
#define BTN_EN2 3 // D3 RX1 JP2-7
|
|
|
144 |
#define BTN_ENC 45 // F7 TDI JP2-12
|
|
|
145 |
|
|
|
146 |
#undef SDSS
|
|
|
147 |
#define SDSS 43 // F5 TMS JP2-8
|
|
|
148 |
|
|
|
149 |
#define STAT_LED_RED_PIN 12 // C2 JP11-14
|
|
|
150 |
#define STAT_LED_BLUE_PIN 10 // C0 JP11-12
|
|
|
151 |
|
|
|
152 |
#elif ENABLED(LCD_I2C_PANELOLU2)
|
|
|
153 |
|
|
|
154 |
#define BTN_EN1 3 // D3 RX1 JP2-7
|
|
|
155 |
#define BTN_EN2 2 // D2 TX1 JP2-5
|
|
|
156 |
#define BTN_ENC 41 // F3 JP2-4
|
|
|
157 |
#undef SDSS
|
|
|
158 |
#define SDSS 38 // F0 B-THERM connector - use SD card on Panelolu2
|
|
|
159 |
|
|
|
160 |
#else
|
|
|
161 |
|
|
|
162 |
#define BTN_EN1 10 // C0 JP11-12
|
|
|
163 |
#define BTN_EN2 11 // C1 JP11-13
|
|
|
164 |
#define BTN_ENC 12 // C2 JP11-14
|
|
|
165 |
|
|
|
166 |
#endif
|
|
|
167 |
|
|
|
168 |
#endif // ULTRA_LCD && NEWPANEL
|