2018-09-27 21:13:15 +02:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
2020-02-03 15:00:57 +01:00
|
|
|
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
2018-09-27 21:13:15 +02:00
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
2019-06-28 06:57:50 +02:00
|
|
|
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
|
2018-09-27 21:13:15 +02:00
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
2020-07-23 05:20:14 +02:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2018-09-27 21:13:15 +02:00
|
|
|
*
|
|
|
|
*/
|
2019-07-05 05:44:12 +02:00
|
|
|
#pragma once
|
2018-09-27 21:13:15 +02:00
|
|
|
|
|
|
|
/**
|
2020-03-02 04:08:01 +01:00
|
|
|
* GT2560 RevB + GT2560 V3.0 + GT2560 V3.1 + GT2560 V4.0 pin assignment
|
2018-09-27 21:13:15 +02:00
|
|
|
*/
|
|
|
|
|
2020-09-23 22:06:36 +02:00
|
|
|
#if NOT_TARGET(__AVR_ATmega1280__, __AVR_ATmega2560__)
|
2018-11-09 04:57:15 +01:00
|
|
|
#error "Oops! Select 'Arduino/Genuino Mega or Mega 2560' in 'Tools > Board.'"
|
2018-09-27 21:13:15 +02:00
|
|
|
#endif
|
|
|
|
|
2019-08-21 02:08:58 +02:00
|
|
|
#ifndef BOARD_INFO_NAME
|
|
|
|
#define BOARD_INFO_NAME "GT2560 V3.0"
|
2018-09-27 21:13:15 +02:00
|
|
|
#endif
|
|
|
|
|
2019-01-26 23:16:21 +01:00
|
|
|
//
|
|
|
|
// Servos
|
|
|
|
//
|
2020-03-22 03:13:19 +01:00
|
|
|
#define SERVO0_PIN 11 //13 untested 3Dtouch
|
2019-01-26 23:16:21 +01:00
|
|
|
|
2018-09-27 21:13:15 +02:00
|
|
|
//
|
|
|
|
// Limit Switches
|
|
|
|
//
|
2019-06-06 04:32:10 +02:00
|
|
|
#ifndef X_STOP_PIN
|
|
|
|
#ifndef X_MIN_PIN
|
2020-03-22 03:13:19 +01:00
|
|
|
#define X_MIN_PIN 24
|
2019-06-06 04:32:10 +02:00
|
|
|
#endif
|
|
|
|
#ifndef X_MAX_PIN
|
2020-03-22 03:13:19 +01:00
|
|
|
#define X_MAX_PIN 22
|
2019-06-06 04:32:10 +02:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#ifndef Y_STOP_PIN
|
|
|
|
#ifndef Y_MIN_PIN
|
2020-03-22 03:13:19 +01:00
|
|
|
#define Y_MIN_PIN 28
|
2019-06-06 04:32:10 +02:00
|
|
|
#endif
|
|
|
|
#ifndef Y_MAX_PIN
|
2020-03-22 03:13:19 +01:00
|
|
|
#define Y_MAX_PIN 26
|
2019-06-06 04:32:10 +02:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
#ifndef Z_STOP_PIN
|
|
|
|
#ifndef Z_MIN_PIN
|
2020-03-22 03:13:19 +01:00
|
|
|
#define Z_MIN_PIN 30
|
2019-06-06 04:32:10 +02:00
|
|
|
#endif
|
|
|
|
#ifndef Z_MAX_PIN
|
2020-03-22 03:13:19 +01:00
|
|
|
#define Z_MAX_PIN 32
|
2019-06-06 04:32:10 +02:00
|
|
|
#endif
|
|
|
|
#endif
|
2018-09-27 21:13:15 +02:00
|
|
|
|
2019-02-05 05:52:41 +01:00
|
|
|
//
|
|
|
|
// Z Probe (when not Z_MIN_PIN)
|
|
|
|
//
|
|
|
|
#ifndef Z_MIN_PROBE_PIN
|
2020-03-22 03:13:19 +01:00
|
|
|
#define Z_MIN_PROBE_PIN 32
|
2019-02-05 05:52:41 +01:00
|
|
|
#endif
|
|
|
|
|
2019-01-31 04:10:56 +01:00
|
|
|
//
|
|
|
|
// Runout Sensor
|
|
|
|
//
|
|
|
|
#ifndef FIL_RUNOUT_PIN
|
2020-03-22 03:13:19 +01:00
|
|
|
#define FIL_RUNOUT_PIN 66
|
2019-01-31 04:10:56 +01:00
|
|
|
#endif
|
|
|
|
#ifndef FIL_RUNOUT2_PIN
|
2020-03-22 03:13:19 +01:00
|
|
|
#define FIL_RUNOUT2_PIN 67
|
2019-01-31 04:10:56 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
//
|
|
|
|
// Power Recovery
|
|
|
|
//
|
2020-03-22 03:13:19 +01:00
|
|
|
#define POWER_LOSS_PIN 69 // Pin to detect power loss
|
|
|
|
#define POWER_LOSS_STATE LOW
|
2019-01-31 04:10:56 +01:00
|
|
|
|
2018-09-27 21:13:15 +02:00
|
|
|
//
|
|
|
|
// Steppers
|
|
|
|
//
|
2020-03-22 03:13:19 +01:00
|
|
|
#define X_STEP_PIN 37
|
|
|
|
#define X_DIR_PIN 39
|
|
|
|
#define X_ENABLE_PIN 35
|
2018-09-27 21:13:15 +02:00
|
|
|
|
2020-03-22 03:13:19 +01:00
|
|
|
#define Y_STEP_PIN 31
|
|
|
|
#define Y_DIR_PIN 33
|
|
|
|
#define Y_ENABLE_PIN 29
|
2018-09-27 21:13:15 +02:00
|
|
|
|
2020-03-22 03:13:19 +01:00
|
|
|
#define Z_STEP_PIN 25
|
|
|
|
#define Z_DIR_PIN 23
|
|
|
|
#define Z_ENABLE_PIN 27
|
2018-09-27 21:13:15 +02:00
|
|
|
|
2020-03-22 03:13:19 +01:00
|
|
|
#define E0_STEP_PIN 46
|
|
|
|
#define E0_DIR_PIN 44
|
|
|
|
#define E0_ENABLE_PIN 12
|
2018-09-27 21:13:15 +02:00
|
|
|
|
2020-03-22 03:13:19 +01:00
|
|
|
#define E1_STEP_PIN 49
|
|
|
|
#define E1_DIR_PIN 47
|
|
|
|
#define E1_ENABLE_PIN 48
|
2018-09-27 21:13:15 +02:00
|
|
|
|
2020-03-22 03:13:19 +01:00
|
|
|
#define E2_STEP_PIN 43
|
|
|
|
#define E2_DIR_PIN 45
|
|
|
|
#define E2_ENABLE_PIN 41
|
2019-11-27 00:43:27 +01:00
|
|
|
|
2018-09-27 21:13:15 +02:00
|
|
|
//
|
|
|
|
// Temperature Sensors
|
|
|
|
//
|
2020-03-22 03:13:19 +01:00
|
|
|
#define TEMP_0_PIN 11 // Analog Input
|
|
|
|
#define TEMP_1_PIN 9 // Analog Input
|
2020-05-03 05:19:05 +02:00
|
|
|
#define TEMP_2_PIN 8 // Analog Input
|
2020-03-22 03:13:19 +01:00
|
|
|
#define TEMP_BED_PIN 10 // Analog Input
|
2018-09-27 21:13:15 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Heaters / Fans
|
|
|
|
//
|
2020-03-22 03:13:19 +01:00
|
|
|
#define HEATER_0_PIN 10
|
|
|
|
#define HEATER_1_PIN 3
|
2020-05-03 05:19:05 +02:00
|
|
|
#define HEATER_2_PIN 2
|
2020-03-22 03:13:19 +01:00
|
|
|
#define HEATER_BED_PIN 4
|
|
|
|
#define FAN_PIN 9
|
|
|
|
#define FAN1_PIN 8
|
|
|
|
#define FAN2_PIN 7
|
2018-09-27 21:13:15 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Misc. Functions
|
|
|
|
//
|
2020-03-22 03:13:19 +01:00
|
|
|
#define SD_DETECT_PIN 38
|
|
|
|
#define SDSS 53
|
2020-05-03 05:19:05 +02:00
|
|
|
#define LED_PIN 13 // Use 6 (case light) for external LED. 13 is internal (yellow) LED.
|
2020-03-22 03:13:19 +01:00
|
|
|
#define PS_ON_PIN 12
|
|
|
|
#define SUICIDE_PIN 54 // This pin must be enabled at boot to keep power flowing
|
2018-09-27 21:13:15 +02:00
|
|
|
|
|
|
|
#ifndef CASE_LIGHT_PIN
|
2020-03-22 03:13:19 +01:00
|
|
|
#define CASE_LIGHT_PIN 6 // 21
|
2018-09-27 21:13:15 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
//
|
|
|
|
// LCD Controller
|
|
|
|
//
|
2020-03-22 03:13:19 +01:00
|
|
|
#define BEEPER_PIN 18
|
2018-09-27 21:13:15 +02:00
|
|
|
|
2019-07-11 09:32:24 +02:00
|
|
|
#ifndef LCD_PINS_RS
|
2020-03-22 03:13:19 +01:00
|
|
|
#define LCD_PINS_RS 20
|
2019-07-11 09:32:24 +02:00
|
|
|
#endif
|
|
|
|
#ifndef LCD_PINS_ENABLE
|
2020-03-22 03:13:19 +01:00
|
|
|
#define LCD_PINS_ENABLE 17
|
2019-07-11 09:32:24 +02:00
|
|
|
#endif
|
|
|
|
#ifndef LCD_PINS_D4
|
2020-03-22 03:13:19 +01:00
|
|
|
#define LCD_PINS_D4 16
|
2019-07-11 09:32:24 +02:00
|
|
|
#endif
|
|
|
|
#ifndef LCD_PINS_D5
|
2020-03-22 03:13:19 +01:00
|
|
|
#define LCD_PINS_D5 21
|
2019-07-11 09:32:24 +02:00
|
|
|
#endif
|
|
|
|
#ifndef LCD_PINS_D6
|
2020-03-22 03:13:19 +01:00
|
|
|
#define LCD_PINS_D6 5
|
2019-07-11 09:32:24 +02:00
|
|
|
#endif
|
|
|
|
#ifndef LCD_PINS_D7
|
2020-03-22 03:13:19 +01:00
|
|
|
#define LCD_PINS_D7 36
|
2019-07-11 09:32:24 +02:00
|
|
|
#endif
|
2018-09-27 21:13:15 +02:00
|
|
|
|
2020-10-15 10:00:27 +02:00
|
|
|
#if IS_NEWPANEL
|
2019-07-11 09:32:24 +02:00
|
|
|
#ifndef BTN_EN1
|
2020-03-22 03:13:19 +01:00
|
|
|
#define BTN_EN1 42
|
2019-07-11 09:32:24 +02:00
|
|
|
#endif
|
|
|
|
#ifndef BTN_EN2
|
2020-03-22 03:13:19 +01:00
|
|
|
#define BTN_EN2 40
|
2019-07-11 09:32:24 +02:00
|
|
|
#endif
|
|
|
|
#ifndef BTN_ENC
|
2020-03-22 03:13:19 +01:00
|
|
|
#define BTN_ENC 19
|
2019-07-11 09:32:24 +02:00
|
|
|
#endif
|
2018-09-27 21:13:15 +02:00
|
|
|
#endif
|