| 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 |
* Velleman K8400 (Vertex)
|
|
|
25 |
* 3DRAG clone
|
|
|
26 |
*
|
|
|
27 |
* K8400 has some minor differences over a normal 3Drag:
|
|
|
28 |
* - No X/Y max endstops
|
|
|
29 |
* - Second extruder step pin has moved
|
|
|
30 |
* - No power supply control
|
|
|
31 |
* - Second heater has moved pin
|
|
|
32 |
*/
|
|
|
33 |
|
|
|
34 |
#define BOARD_NAME "K8400"
|
|
|
35 |
#define DEFAULT_MACHINE_NAME "Vertex"
|
|
|
36 |
#define DEFAULT_SOURCE_CODE_URL "https://github.com/birkett/Vertex-K8400-Firmware"
|
|
|
37 |
|
|
|
38 |
#include "pins_3DRAG.h"
|
|
|
39 |
|
|
|
40 |
//
|
|
|
41 |
// Limit Switches
|
|
|
42 |
//
|
|
|
43 |
#define X_STOP_PIN 3
|
|
|
44 |
#define Y_STOP_PIN 14
|
|
|
45 |
|
|
|
46 |
#undef X_MIN_PIN
|
|
|
47 |
#undef X_MAX_PIN
|
|
|
48 |
#undef Y_MIN_PIN
|
|
|
49 |
#undef Y_MAX_PIN
|
|
|
50 |
|
|
|
51 |
//
|
|
|
52 |
// Steppers
|
|
|
53 |
//
|
|
|
54 |
#undef E1_STEP_PIN
|
|
|
55 |
#define E1_STEP_PIN 32
|
|
|
56 |
|
|
|
57 |
//
|
|
|
58 |
// Heaters / Fans
|
|
|
59 |
//
|
|
|
60 |
#undef HEATER_1_PIN
|
|
|
61 |
#define HEATER_1_PIN 11
|
|
|
62 |
|
|
|
63 |
//
|
|
|
64 |
// Misc. Functions
|
|
|
65 |
//
|
|
|
66 |
#undef PS_ON_PIN
|
|
|
67 |
#undef KILL_PIN
|
|
|
68 |
#undef SD_DETECT_PIN
|
|
|
69 |
|
|
|
70 |
#if Z_STEP_PIN == 26
|
|
|
71 |
#undef Z_STEP_PIN
|
|
|
72 |
#define Z_STEP_PIN 32
|
|
|
73 |
#endif
|