2017-06-17 23:19:42 +02:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
2020-02-03 15:00:57 +01:00
|
|
|
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
2017-06-17 23:19:42 +02:00
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
2019-06-28 06:57:50 +02:00
|
|
|
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
|
2017-06-17 23:19:42 +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/>.
|
2017-06-17 23:19:42 +02:00
|
|
|
*
|
|
|
|
*/
|
2019-07-05 05:44:12 +02:00
|
|
|
#pragma once
|
2017-06-17 23:19:42 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Re-ARM with RAMPS v1.4 pin assignments
|
|
|
|
*
|
|
|
|
* Applies to the following boards:
|
|
|
|
*
|
|
|
|
* RAMPS_14_EFB (Hotend, Fan, Bed)
|
|
|
|
* RAMPS_14_EEB (Hotend0, Hotend1, Bed)
|
|
|
|
* RAMPS_14_EFF (Hotend, Fan0, Fan1)
|
|
|
|
* RAMPS_14_EEF (Hotend0, Hotend1, Fan)
|
|
|
|
* RAMPS_14_SF (Spindle, Controller Fan)
|
|
|
|
*/
|
|
|
|
|
2018-11-14 07:23:18 +01:00
|
|
|
// Numbers in parentheses () are the corresponding mega2560 pin numbers
|
2017-11-08 06:37:57 +01:00
|
|
|
|
2021-03-05 11:30:52 +01:00
|
|
|
#include "env_validate.h"
|
2017-06-17 23:19:42 +02:00
|
|
|
|
2019-08-21 02:08:58 +02:00
|
|
|
#define BOARD_INFO_NAME "Re-ARM RAMPS 1.4"
|
2017-06-17 23:19:42 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Servos
|
|
|
|
//
|
2020-03-22 03:13:19 +01:00
|
|
|
#define SERVO0_PIN P1_20 // (11)
|
|
|
|
#define SERVO1_PIN P1_21 // ( 6) also on J5-1
|
|
|
|
#define SERVO2_PIN P1_19 // ( 5)
|
|
|
|
#define SERVO3_PIN P1_18 // ( 4) 5V output
|
2017-06-17 23:19:42 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Limit Switches
|
|
|
|
//
|
2020-03-22 03:13:19 +01:00
|
|
|
#define X_MIN_PIN P1_24 // ( 3) 10k pullup to 3.3V, 1K series
|
|
|
|
#define X_MAX_PIN P1_25 // ( 2) 10k pullup to 3.3V, 1K series
|
|
|
|
#define Y_MIN_PIN P1_26 // (14) 10k pullup to 3.3V, 1K series
|
|
|
|
#define Y_MAX_PIN P1_27 // (15) 10k pullup to 3.3V, 1K series
|
|
|
|
#define Z_MIN_PIN P1_29 // (18) 10k pullup to 3.3V, 1K series
|
|
|
|
#define Z_MAX_PIN P1_28 // (19) 10k pullup to 3.3V, 1K series
|
|
|
|
#define ONBOARD_ENDSTOPPULLUPS // Board has built-in pullups
|
2017-06-17 23:19:42 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Steppers
|
|
|
|
//
|
2020-03-22 03:13:19 +01:00
|
|
|
#define X_STEP_PIN P2_01 // (54)
|
|
|
|
#define X_DIR_PIN P0_11 // (55)
|
|
|
|
#define X_ENABLE_PIN P0_10 // (38)
|
2018-02-04 23:35:52 +01:00
|
|
|
#ifndef X_CS_PIN
|
2020-03-22 03:13:19 +01:00
|
|
|
#define X_CS_PIN P1_01 // ETH
|
2018-02-04 23:35:52 +01:00
|
|
|
#endif
|
2017-06-17 23:19:42 +02:00
|
|
|
|
2020-03-22 03:13:19 +01:00
|
|
|
#define Y_STEP_PIN P2_02 // (60)
|
|
|
|
#define Y_DIR_PIN P0_20 // (61)
|
|
|
|
#define Y_ENABLE_PIN P0_19 // (56)
|
2018-02-04 23:35:52 +01:00
|
|
|
#ifndef Y_CS_PIN
|
2020-03-22 03:13:19 +01:00
|
|
|
#define Y_CS_PIN P1_04 // ETH
|
2018-02-04 23:35:52 +01:00
|
|
|
#endif
|
2017-06-17 23:19:42 +02:00
|
|
|
|
2020-03-22 03:13:19 +01:00
|
|
|
#define Z_STEP_PIN P2_03 // (46)
|
|
|
|
#define Z_DIR_PIN P0_22 // (48)
|
|
|
|
#define Z_ENABLE_PIN P0_21 // (62)
|
2018-02-04 23:35:52 +01:00
|
|
|
#ifndef Z_CS_PIN
|
2020-03-22 03:13:19 +01:00
|
|
|
#define Z_CS_PIN P1_10 // ETH
|
2018-02-04 23:35:52 +01:00
|
|
|
#endif
|
2017-06-17 23:19:42 +02:00
|
|
|
|
2020-03-22 03:13:19 +01:00
|
|
|
#define E0_STEP_PIN P2_00 // (26)
|
|
|
|
#define E0_DIR_PIN P0_05 // (28)
|
|
|
|
#define E0_ENABLE_PIN P0_04 // (24)
|
2018-02-04 23:35:52 +01:00
|
|
|
#ifndef E0_CS_PIN
|
2020-03-22 03:13:19 +01:00
|
|
|
#define E0_CS_PIN P1_14 // ETH
|
2018-02-04 23:35:52 +01:00
|
|
|
#endif
|
2017-06-17 23:19:42 +02:00
|
|
|
|
2020-03-22 03:13:19 +01:00
|
|
|
#define E1_STEP_PIN P2_08 // (36)
|
|
|
|
#define E1_DIR_PIN P2_13 // (34)
|
|
|
|
#define E1_ENABLE_PIN P4_29 // (30)
|
2018-02-04 23:35:52 +01:00
|
|
|
#ifndef E1_CS_PIN
|
2020-03-22 03:13:19 +01:00
|
|
|
#define E1_CS_PIN -1
|
2018-02-04 23:35:52 +01:00
|
|
|
#endif
|
2017-06-17 23:19:42 +02:00
|
|
|
|
2018-02-02 04:49:40 +01:00
|
|
|
//
|
|
|
|
// Software SPI pins for TMC2130 stepper drivers
|
|
|
|
//
|
|
|
|
#if ENABLED(TMC_USE_SW_SPI)
|
2019-07-07 04:25:48 +02:00
|
|
|
#ifndef TMC_SW_MOSI
|
2020-03-22 03:13:19 +01:00
|
|
|
#define TMC_SW_MOSI P1_00 // ETH
|
2019-07-07 04:25:48 +02:00
|
|
|
#endif
|
|
|
|
#ifndef TMC_SW_MISO
|
2020-03-22 03:13:19 +01:00
|
|
|
#define TMC_SW_MISO P1_08 // ETH
|
2019-07-07 04:25:48 +02:00
|
|
|
#endif
|
|
|
|
#ifndef TMC_SW_SCK
|
2020-03-22 03:13:19 +01:00
|
|
|
#define TMC_SW_SCK P1_09 // ETH
|
2019-07-07 04:25:48 +02:00
|
|
|
#endif
|
2018-02-02 04:49:40 +01:00
|
|
|
#endif
|
2017-06-17 23:19:42 +02:00
|
|
|
|
2020-03-17 21:05:33 +01:00
|
|
|
#if HAS_TMC_UART
|
2019-05-05 00:26:13 +02:00
|
|
|
/**
|
2019-06-20 22:47:50 +02:00
|
|
|
* TMC2208/TMC2209 stepper drivers
|
2019-05-05 00:26:13 +02:00
|
|
|
*
|
|
|
|
* Hardware serial communication ports.
|
|
|
|
* If undefined software serial is used according to the pins below
|
|
|
|
*/
|
|
|
|
|
2019-07-17 05:42:36 +02:00
|
|
|
//
|
|
|
|
// Software serial
|
|
|
|
//
|
2019-05-05 00:26:13 +02:00
|
|
|
|
2019-07-17 05:42:36 +02:00
|
|
|
// P2_08 E1-Step
|
|
|
|
// P2_13 E1-Dir
|
2019-05-05 00:26:13 +02:00
|
|
|
|
2019-09-02 06:54:41 +02:00
|
|
|
#ifndef X_SERIAL_TX_PIN
|
2020-03-22 03:13:19 +01:00
|
|
|
#define X_SERIAL_TX_PIN P0_01
|
2019-08-24 03:55:41 +02:00
|
|
|
#endif
|
|
|
|
#ifndef X_SERIAL_RX_PIN
|
2020-03-22 03:13:19 +01:00
|
|
|
#define X_SERIAL_RX_PIN P0_01
|
2019-08-24 03:55:41 +02:00
|
|
|
#endif
|
2019-05-05 00:26:13 +02:00
|
|
|
|
2019-08-24 03:55:41 +02:00
|
|
|
#ifndef Y_SERIAL_TX_PIN
|
2020-03-22 03:13:19 +01:00
|
|
|
#define Y_SERIAL_TX_PIN P0_00
|
2019-08-24 03:55:41 +02:00
|
|
|
#endif
|
|
|
|
#ifndef Y_SERIAL_RX_PIN
|
2020-03-22 03:13:19 +01:00
|
|
|
#define Y_SERIAL_RX_PIN P0_00
|
2019-08-24 03:55:41 +02:00
|
|
|
#endif
|
2019-05-05 00:26:13 +02:00
|
|
|
|
2019-08-24 03:55:41 +02:00
|
|
|
#ifndef Z_SERIAL_TX_PIN
|
2020-03-22 03:13:19 +01:00
|
|
|
#define Z_SERIAL_TX_PIN P2_13
|
2019-08-24 03:55:41 +02:00
|
|
|
#endif
|
|
|
|
#ifndef Z_SERIAL_RX_PIN
|
2020-03-22 03:13:19 +01:00
|
|
|
#define Z_SERIAL_RX_PIN P2_13
|
2019-08-24 03:55:41 +02:00
|
|
|
#endif
|
2019-05-05 00:26:13 +02:00
|
|
|
|
2019-08-24 03:55:41 +02:00
|
|
|
#ifndef E0_SERIAL_TX_PIN
|
2020-03-22 03:13:19 +01:00
|
|
|
#define E0_SERIAL_TX_PIN P2_08
|
2019-08-24 03:55:41 +02:00
|
|
|
#endif
|
2019-11-10 05:51:20 +01:00
|
|
|
#ifndef E0_SERIAL_RX_PIN
|
2020-03-22 03:13:19 +01:00
|
|
|
#define E0_SERIAL_RX_PIN P2_08
|
2019-08-24 03:55:41 +02:00
|
|
|
#endif
|
2019-05-05 00:26:13 +02:00
|
|
|
|
2019-11-07 00:08:12 +01:00
|
|
|
// Reduce baud rate to improve software serial reliability
|
2020-08-22 08:22:14 +02:00
|
|
|
#define TMC_BAUD_RATE 19200
|
2019-05-05 00:26:13 +02:00
|
|
|
#endif
|
|
|
|
|
2017-06-17 23:19:42 +02:00
|
|
|
//
|
|
|
|
// Temperature Sensors
|
|
|
|
// 3.3V max when defined as an analog input
|
|
|
|
//
|
2020-03-22 03:13:19 +01:00
|
|
|
#define TEMP_0_PIN P0_23_A0 // A0 (T0) - (67) - TEMP_0_PIN
|
|
|
|
#define TEMP_BED_PIN P0_24_A1 // A1 (T1) - (68) - TEMP_BED_PIN
|
|
|
|
#define TEMP_1_PIN P0_25_A2 // A2 (T2) - (69) - TEMP_1_PIN
|
|
|
|
#define TEMP_2_PIN P0_26_A3 // A3 - (63) - J5-3 & AUX-2
|
|
|
|
#define TEMP_3_PIN P1_30_A4 // A4 - (37) - BUZZER_PIN
|
|
|
|
//#define TEMP_4_PIN P1_31_A5 // A5 - (49) - SD_DETECT_PIN
|
2020-06-28 07:12:22 +02:00
|
|
|
//#define ?? P0_03_A6 // A6 - ( 0) - RXD0 - J4-4 & AUX-1
|
2020-03-22 03:13:19 +01:00
|
|
|
#define FILWIDTH_PIN P0_02_A7 // A7 - ( 1) - TXD0 - J4-5 & AUX-1
|
2017-06-17 23:19:42 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Augmentation for auto-assigning RAMPS plugs
|
|
|
|
//
|
2019-07-06 01:20:15 +02:00
|
|
|
#if NONE(IS_RAMPS_EEB, IS_RAMPS_EEF, IS_RAMPS_EFB, IS_RAMPS_EFF, IS_RAMPS_SF) && !PIN_EXISTS(MOSFET_D)
|
2020-04-20 06:56:55 +02:00
|
|
|
#if HAS_MULTI_HOTEND
|
2017-06-17 23:19:42 +02:00
|
|
|
#if TEMP_SENSOR_BED
|
|
|
|
#define IS_RAMPS_EEB
|
|
|
|
#else
|
|
|
|
#define IS_RAMPS_EEF
|
|
|
|
#endif
|
|
|
|
#elif TEMP_SENSOR_BED
|
|
|
|
#define IS_RAMPS_EFB
|
|
|
|
#else
|
|
|
|
#define IS_RAMPS_EFF
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
//
|
|
|
|
// Heaters / Fans
|
|
|
|
//
|
|
|
|
#ifndef MOSFET_D_PIN
|
2020-03-22 03:13:19 +01:00
|
|
|
#define MOSFET_D_PIN -1
|
2017-06-17 23:19:42 +02:00
|
|
|
#endif
|
|
|
|
#ifndef RAMPS_D8_PIN
|
2020-03-22 03:13:19 +01:00
|
|
|
#define RAMPS_D8_PIN P2_07 // (8)
|
2017-06-17 23:19:42 +02:00
|
|
|
#endif
|
|
|
|
#ifndef RAMPS_D9_PIN
|
2020-03-22 03:13:19 +01:00
|
|
|
#define RAMPS_D9_PIN P2_04 // (9)
|
2017-06-17 23:19:42 +02:00
|
|
|
#endif
|
|
|
|
#ifndef RAMPS_D10_PIN
|
2020-03-22 03:13:19 +01:00
|
|
|
#define RAMPS_D10_PIN P2_05 // (10)
|
2017-06-17 23:19:42 +02:00
|
|
|
#endif
|
|
|
|
|
2020-03-22 03:13:19 +01:00
|
|
|
#define HEATER_0_PIN RAMPS_D10_PIN
|
|
|
|
|
|
|
|
#if ENABLED(IS_RAMPS_EFB) // Hotend, Fan, Bed
|
|
|
|
#define HEATER_BED_PIN RAMPS_D8_PIN
|
|
|
|
#elif ENABLED(IS_RAMPS_EEF) // Hotend, Hotend, Fan
|
|
|
|
#define HEATER_1_PIN RAMPS_D9_PIN
|
|
|
|
#elif ENABLED(IS_RAMPS_EEB) // Hotend, Hotend, Bed
|
|
|
|
#define HEATER_1_PIN RAMPS_D9_PIN
|
|
|
|
#define HEATER_BED_PIN RAMPS_D8_PIN
|
|
|
|
#elif ENABLED(IS_RAMPS_EFF) // Hotend, Fan, Fan
|
|
|
|
#define FAN1_PIN RAMPS_D8_PIN
|
|
|
|
#elif DISABLED(IS_RAMPS_SF) // Not Spindle, Fan (i.e., "EFBF" or "EFBE")
|
|
|
|
#define HEATER_BED_PIN RAMPS_D8_PIN
|
2017-06-17 23:19:42 +02:00
|
|
|
#if HOTENDS == 1
|
2020-03-22 03:13:19 +01:00
|
|
|
#define FAN1_PIN MOSFET_D_PIN
|
2017-06-17 23:19:42 +02:00
|
|
|
#else
|
2020-03-22 03:13:19 +01:00
|
|
|
#define HEATER_1_PIN MOSFET_D_PIN
|
2017-06-17 23:19:42 +02:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef FAN_PIN
|
2019-03-17 05:43:06 +01:00
|
|
|
#if EITHER(IS_RAMPS_EFB, IS_RAMPS_EFF) // Hotend, Fan, Bed or Hotend, Fan, Fan
|
2020-03-22 03:13:19 +01:00
|
|
|
#define FAN_PIN RAMPS_D9_PIN
|
2019-03-17 05:43:06 +01:00
|
|
|
#elif EITHER(IS_RAMPS_EEF, IS_RAMPS_SF) // Hotend, Hotend, Fan or Spindle, Fan
|
2020-03-22 03:13:19 +01:00
|
|
|
#define FAN_PIN RAMPS_D8_PIN
|
|
|
|
#elif ENABLED(IS_RAMPS_EEB) // Hotend, Hotend, Bed
|
|
|
|
#define FAN_PIN P1_18 // (4) IO pin. Buffer needed
|
|
|
|
#else // Non-specific are "EFB" (i.e., "EFBF" or "EFBE")
|
|
|
|
#define FAN_PIN RAMPS_D9_PIN
|
2018-06-07 23:46:13 +02:00
|
|
|
#endif
|
2017-06-17 23:19:42 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
//
|
|
|
|
// Misc. Functions
|
|
|
|
//
|
2020-03-22 03:13:19 +01:00
|
|
|
#define LED_PIN P4_28 // (13)
|
2017-06-17 23:19:42 +02:00
|
|
|
|
2019-10-12 22:02:20 +02:00
|
|
|
// define digital pin 5 for the filament runout sensor. Use the RAMPS 1.4 digital input 5 on the servos connector
|
2018-02-18 11:43:01 +01:00
|
|
|
#ifndef FIL_RUNOUT_PIN
|
2020-03-22 03:13:19 +01:00
|
|
|
#define FIL_RUNOUT_PIN P1_19 // (5)
|
2018-02-18 11:43:01 +01:00
|
|
|
#endif
|
2017-06-17 23:19:42 +02:00
|
|
|
|
2020-03-22 03:13:19 +01:00
|
|
|
#define PS_ON_PIN P2_12 // (12)
|
2017-06-17 23:19:42 +02:00
|
|
|
|
2019-02-24 02:36:58 +01:00
|
|
|
#if !defined(MAX6675_SS_PIN) && DISABLED(USE_ZMAX_PLUG)
|
2020-03-22 03:13:19 +01:00
|
|
|
#define MAX6675_SS_PIN P1_28
|
2019-02-20 12:05:00 +01:00
|
|
|
#endif
|
|
|
|
|
2019-04-09 00:52:33 +02:00
|
|
|
#if ENABLED(CASE_LIGHT_ENABLE) && !PIN_EXISTS(CASE_LIGHT) && !defined(SPINDLE_LASER_ENA_PIN)
|
2020-03-22 03:13:19 +01:00
|
|
|
#if !defined(NUM_SERVOS) || NUM_SERVOS < 4 // Try to use servo connector
|
|
|
|
#define CASE_LIGHT_PIN P1_18 // (4) MUST BE HARDWARE PWM
|
2017-06-17 23:19:42 +02:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
//
|
|
|
|
// M3/M4/M5 - Spindle/Laser Control
|
2018-11-22 02:00:39 +01:00
|
|
|
// Use servo pins, if available
|
2017-06-17 23:19:42 +02:00
|
|
|
//
|
2019-06-28 06:06:49 +02:00
|
|
|
#if HAS_CUTTER && !PIN_EXISTS(SPINDLE_LASER_ENA)
|
2018-11-22 02:00:39 +01:00
|
|
|
#if NUM_SERVOS > 1
|
2019-06-28 06:06:49 +02:00
|
|
|
#if ENABLED(SPINDLE_FEATURE)
|
|
|
|
#error "SPINDLE_FEATURE requires 3 free servo pins."
|
|
|
|
#else
|
|
|
|
#error "LASER_FEATURE requires 3 free servo pins."
|
|
|
|
#endif
|
2017-06-17 23:19:42 +02:00
|
|
|
#endif
|
2020-03-22 03:13:19 +01:00
|
|
|
#define SPINDLE_LASER_ENA_PIN SERVO1_PIN // (6) Pin should have a pullup/pulldown!
|
|
|
|
#define SPINDLE_LASER_PWM_PIN SERVO3_PIN // (4) MUST BE HARDWARE PWM
|
|
|
|
#define SPINDLE_DIR_PIN SERVO2_PIN // (5)
|
2017-06-17 23:19:42 +02:00
|
|
|
#endif
|
2018-01-22 08:54:41 +01:00
|
|
|
|
2017-06-17 23:19:42 +02:00
|
|
|
//
|
|
|
|
// Průša i3 MK2 Multiplexer Support
|
|
|
|
//
|
2018-01-29 23:45:44 +01:00
|
|
|
#if SERIAL_PORT != 0 && SERIAL_PORT_2 != 0
|
2020-03-22 03:13:19 +01:00
|
|
|
#define E_MUX0_PIN P0_03 // ( 0) Z_CS_PIN
|
|
|
|
#define E_MUX1_PIN P0_02 // ( 1) E0_CS_PIN
|
2018-01-29 23:45:44 +01:00
|
|
|
#endif
|
2020-03-22 03:13:19 +01:00
|
|
|
#define E_MUX2_PIN P0_26 // (63) E1_CS_PIN
|
2017-06-17 23:19:42 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* LCD / Controller
|
|
|
|
*
|
2018-11-22 02:00:39 +01:00
|
|
|
* All controllers can use J3 and J5 on the Re-ARM board. Custom cabling will be required.
|
|
|
|
*
|
|
|
|
* - https://github.com/wolfmanjm/universal-panel-adapter
|
2020-07-23 05:20:14 +02:00
|
|
|
* - https://panucattdevices.freshdesk.com/support/solutions/articles/1000243195-lcd-display-installation
|
2017-07-31 08:31:14 +02:00
|
|
|
*/
|
2017-07-30 07:02:41 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Smart LCD adapter
|
2017-07-31 08:31:14 +02:00
|
|
|
*
|
2017-06-17 23:19:42 +02:00
|
|
|
* The Smart LCD adapter can be used for the two 10 pin LCD controllers such as
|
2018-11-22 02:00:39 +01:00
|
|
|
* REPRAP_DISCOUNT_SMART_CONTROLLER. It can't be used for controllers that use
|
2017-06-17 23:19:42 +02:00
|
|
|
* DOGLCD_A0, DOGLCD_CS, LCD_PINS_D5, LCD_PINS_D6 or LCD_PINS_D7. A custom cable
|
|
|
|
* is needed to pick up 5V for the EXP1 connection.
|
|
|
|
*
|
2017-07-31 08:31:14 +02:00
|
|
|
* SD card on the LCD uses the same SPI signals as the LCD. This results in garbage/lines
|
2017-07-30 07:02:41 +02:00
|
|
|
* on the LCD display during accesses of the SD card. The menus/code has been arranged so
|
2017-07-31 08:31:14 +02:00
|
|
|
* that the garbage/lines are erased immediately after the SD card accesses are completed.
|
2017-06-17 23:19:42 +02:00
|
|
|
*/
|
|
|
|
|
2018-11-22 02:00:39 +01:00
|
|
|
#if ENABLED(CR10_STOCKDISPLAY)
|
2017-06-17 23:19:42 +02:00
|
|
|
|
2018-11-22 02:00:39 +01:00
|
|
|
// Re-Arm can support Creality stock display without SD card reader and single cable on EXP3.
|
|
|
|
// Re-Arm J3 pins 1 (p1.31) & 2 (P3.26) are not used. Stock cable will need to have one
|
|
|
|
// 10-pin IDC connector trimmed or replaced with a 12-pin IDC connector to fit J3.
|
|
|
|
// Requires REVERSE_ENCODER_DIRECTION in Configuration.h
|
2017-09-27 12:10:57 +02:00
|
|
|
|
2020-03-22 03:13:19 +01:00
|
|
|
#define BEEPER_PIN P2_11 // J3-3 & AUX-4
|
2018-06-22 06:08:17 +02:00
|
|
|
|
2020-03-22 03:13:19 +01:00
|
|
|
#define BTN_EN1 P0_16 // J3-7 & AUX-4
|
|
|
|
#define BTN_EN2 P1_23 // J3-5 & AUX-4
|
|
|
|
#define BTN_ENC P3_25 // J3-4 & AUX-4
|
2018-06-22 06:08:17 +02:00
|
|
|
|
2020-03-22 03:13:19 +01:00
|
|
|
#define LCD_PINS_RS P0_15 // J3-9 & AUX-4 (CS)
|
|
|
|
#define LCD_PINS_ENABLE P0_18 // J3-10 & AUX-3 (SID, MOSI)
|
|
|
|
#define LCD_PINS_D4 P2_06 // J3-8 & AUX-3 (SCK, CLK)
|
2017-06-17 23:19:42 +02:00
|
|
|
|
2021-01-27 22:11:25 +01:00
|
|
|
#elif ENABLED(ZONESTAR_LCD)
|
|
|
|
|
|
|
|
#error "CAUTION! ZONESTAR_LCD on REARM requires wiring modifications. NB. ADCs are not 5V tolerant. Comment out this line to continue."
|
|
|
|
|
2020-09-28 08:52:38 +02:00
|
|
|
#elif IS_TFTGLCD_PANEL
|
|
|
|
|
|
|
|
#if ENABLED(TFTGLCD_PANEL_SPI)
|
|
|
|
#define TFTGLCD_CS P3_26 // (31) J3-2 & AUX-4
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define SD_DETECT_PIN P1_31 // (49) J3-1 & AUX-3 (NOT 5V tolerant)
|
|
|
|
#define KILL_PIN P1_22 // (41) J5-4 & AUX-4
|
|
|
|
|
2020-09-28 08:13:27 +02:00
|
|
|
#elif HAS_WIRED_LCD
|
2018-06-22 06:08:17 +02:00
|
|
|
|
2019-04-16 05:54:11 +02:00
|
|
|
#if ENABLED(FYSETC_MINI_12864)
|
2020-03-22 03:13:19 +01:00
|
|
|
#define BEEPER_PIN P1_01
|
|
|
|
#define BTN_ENC P1_04
|
2019-04-16 05:54:11 +02:00
|
|
|
#else
|
2020-03-22 03:13:19 +01:00
|
|
|
#define BEEPER_PIN P1_30 // (37) not 5V tolerant
|
|
|
|
#define BTN_ENC P2_11 // (35) J3-3 & AUX-4
|
2019-04-16 05:54:11 +02:00
|
|
|
#endif
|
2017-09-27 12:10:57 +02:00
|
|
|
|
2020-03-22 03:13:19 +01:00
|
|
|
#define BTN_EN1 P3_26 // (31) J3-2 & AUX-4
|
|
|
|
#define BTN_EN2 P3_25 // (33) J3-4 & AUX-4
|
2017-08-15 02:34:31 +02:00
|
|
|
|
2020-03-22 03:13:19 +01:00
|
|
|
#define SD_DETECT_PIN P1_31 // (49) J3-1 & AUX-3 (NOT 5V tolerant)
|
|
|
|
#define KILL_PIN P1_22 // (41) J5-4 & AUX-4
|
|
|
|
#define LCD_PINS_RS P0_16 // (16) J3-7 & AUX-4
|
2020-04-25 05:20:24 +02:00
|
|
|
#define LCD_SDSS P1_23 // (53) J3-5 & AUX-3
|
2018-06-22 06:08:17 +02:00
|
|
|
|
2020-10-15 10:00:27 +02:00
|
|
|
#if IS_NEWPANEL
|
|
|
|
#if IS_RRW_KEYPAD
|
2021-01-13 03:43:52 +01:00
|
|
|
#define SHIFT_OUT_PIN P0_18 // (51) (MOSI) J3-10 & AUX-3
|
|
|
|
#define SHIFT_CLK_PIN P0_15 // (52) (SCK) J3-9 & AUX-3
|
|
|
|
#define SHIFT_LD_PIN P1_31 // (49) J3-1 & AUX-3 (NOT 5V tolerant)
|
2018-06-22 06:08:17 +02:00
|
|
|
#endif
|
2018-11-22 02:00:39 +01:00
|
|
|
#else
|
2021-01-13 03:43:52 +01:00
|
|
|
//#define SHIFT_CLK_PIN P3_26 // (31) J3-2 & AUX-4
|
|
|
|
//#define SHIFT_LD_PIN P3_25 // (33) J3-4 & AUX-4
|
|
|
|
//#define SHIFT_OUT_PIN P2_11 // (35) J3-3 & AUX-4
|
|
|
|
//#define SHIFT_EN_PIN P1_22 // (41) J5-4 & AUX-4
|
2018-11-22 02:00:39 +01:00
|
|
|
#endif
|
2018-06-22 06:08:17 +02:00
|
|
|
|
2019-03-17 05:43:06 +01:00
|
|
|
#if ANY(VIKI2, miniVIKI)
|
2020-10-12 23:38:07 +02:00
|
|
|
//#define LCD_SCREEN_ROT_180
|
2018-06-22 06:08:17 +02:00
|
|
|
|
2020-03-22 03:13:19 +01:00
|
|
|
#define DOGLCD_CS P0_16 // (16)
|
|
|
|
#define DOGLCD_A0 P2_06 // (59) J3-8 & AUX-2
|
2021-01-01 21:31:15 +01:00
|
|
|
#define DOGLCD_SCK SD_SCK_PIN
|
|
|
|
#define DOGLCD_MOSI SD_MOSI_PIN
|
2018-06-22 06:08:17 +02:00
|
|
|
|
2020-09-28 08:13:27 +02:00
|
|
|
#define STAT_LED_BLUE_PIN P0_26 // (63) may change if cable changes
|
2020-03-22 03:13:19 +01:00
|
|
|
#define STAT_LED_RED_PIN P1_21 // ( 6) may change if cable changes
|
2020-09-28 08:13:27 +02:00
|
|
|
|
2018-11-22 02:00:39 +01:00
|
|
|
#else
|
2019-04-16 05:54:11 +02:00
|
|
|
|
|
|
|
#if ENABLED(FYSETC_MINI_12864)
|
2020-03-22 03:13:19 +01:00
|
|
|
#define DOGLCD_SCK P0_15
|
|
|
|
#define DOGLCD_MOSI P0_18
|
2019-05-05 00:59:36 +02:00
|
|
|
|
|
|
|
// EXP1 on LCD adapter is not usable - using Ethernet connector instead
|
2020-03-22 03:13:19 +01:00
|
|
|
#define DOGLCD_CS P1_09
|
|
|
|
#define DOGLCD_A0 P1_14
|
|
|
|
//#define FORCE_SOFT_SPI // Use this if default of hardware SPI causes display problems
|
|
|
|
// results in LCD soft SPI mode 3, SD soft SPI mode 0
|
2019-05-05 00:59:36 +02:00
|
|
|
|
2020-03-22 03:13:19 +01:00
|
|
|
#define LCD_RESET_PIN P0_16 // Must be high or open for LCD to operate normally.
|
2019-05-05 00:59:36 +02:00
|
|
|
|
|
|
|
#if EITHER(FYSETC_MINI_12864_1_2, FYSETC_MINI_12864_2_0)
|
|
|
|
#ifndef RGB_LED_R_PIN
|
2020-03-22 03:13:19 +01:00
|
|
|
#define RGB_LED_R_PIN P1_00
|
2019-05-05 00:59:36 +02:00
|
|
|
#endif
|
|
|
|
#ifndef RGB_LED_G_PIN
|
2020-03-22 03:13:19 +01:00
|
|
|
#define RGB_LED_G_PIN P1_01
|
2019-05-05 00:59:36 +02:00
|
|
|
#endif
|
|
|
|
#ifndef RGB_LED_B_PIN
|
2020-03-22 03:13:19 +01:00
|
|
|
#define RGB_LED_B_PIN P1_08
|
2019-05-05 00:59:36 +02:00
|
|
|
#endif
|
|
|
|
#elif ENABLED(FYSETC_MINI_12864_2_1)
|
2020-03-22 03:13:19 +01:00
|
|
|
#define NEOPIXEL_PIN P1_00
|
2019-05-05 00:59:36 +02:00
|
|
|
#endif
|
2019-04-16 05:54:11 +02:00
|
|
|
#else
|
2020-03-22 03:13:19 +01:00
|
|
|
#define DOGLCD_CS P0_26 // (63) J5-3 & AUX-2
|
|
|
|
#define DOGLCD_A0 P2_06 // (59) J3-8 & AUX-2
|
2019-04-16 05:54:11 +02:00
|
|
|
#endif
|
|
|
|
|
2020-03-22 03:13:19 +01:00
|
|
|
#define LCD_BACKLIGHT_PIN P0_16 //(16) J3-7 & AUX-4 - only used on DOGLCD controllers
|
|
|
|
#define LCD_PINS_ENABLE P0_18 // (51) (MOSI) J3-10 & AUX-3
|
|
|
|
#define LCD_PINS_D4 P0_15 // (52) (SCK) J3-9 & AUX-3
|
2020-10-15 10:00:27 +02:00
|
|
|
#if IS_ULTIPANEL
|
2020-03-22 03:13:19 +01:00
|
|
|
#define LCD_PINS_D5 P1_17 // (71) ENET_MDIO
|
|
|
|
#define LCD_PINS_D6 P1_14 // (73) ENET_RX_ER
|
|
|
|
#define LCD_PINS_D7 P1_10 // (75) ENET_RXD1
|
2020-11-21 08:47:04 +01:00
|
|
|
|
|
|
|
#if ENABLED(REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER)
|
|
|
|
#define BTN_ENC_EN LCD_PINS_D7 // Detect the presence of the encoder
|
|
|
|
#endif
|
|
|
|
|
2018-06-22 06:08:17 +02:00
|
|
|
#endif
|
2018-11-22 02:00:39 +01:00
|
|
|
#endif
|
2017-10-09 23:18:10 +02:00
|
|
|
|
2018-11-22 02:00:39 +01:00
|
|
|
#if ENABLED(MINIPANEL)
|
|
|
|
// GLCD features
|
|
|
|
// Uncomment screen orientation
|
|
|
|
//#define LCD_SCREEN_ROT_90
|
|
|
|
//#define LCD_SCREEN_ROT_180
|
|
|
|
//#define LCD_SCREEN_ROT_270
|
2020-09-28 08:13:27 +02:00
|
|
|
#endif
|
2017-06-17 23:19:42 +02:00
|
|
|
|
2020-09-28 08:13:27 +02:00
|
|
|
#endif // HAS_WIRED_LCD
|
2017-06-17 23:19:42 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Ethernet pins
|
|
|
|
//
|
2020-10-15 10:00:27 +02:00
|
|
|
#if !IS_ULTIPANEL
|
2020-03-22 03:13:19 +01:00
|
|
|
#define ENET_MDIO P1_17 // (71) J12-4
|
|
|
|
#define ENET_RX_ER P1_14 // (73) J12-6
|
|
|
|
#define ENET_RXD1 P1_10 // (75) J12-8
|
2017-08-16 00:30:14 +02:00
|
|
|
#endif
|
2020-03-22 03:13:19 +01:00
|
|
|
#define ENET_MOC P1_16 // (70) J12-3
|
|
|
|
#define REF_CLK P1_15 // (72) J12-5
|
|
|
|
#define ENET_RXD0 P1_09 // (74) J12-7
|
|
|
|
#define ENET_CRS P1_08 // (76) J12-9
|
|
|
|
#define ENET_TX_EN P1_04 // (77) J12-10
|
|
|
|
#define ENET_TXD0 P1_00 // (78) J12-11
|
|
|
|
#define ENET_TXD1 P1_01 // (79) J12-12
|
2017-06-17 23:19:42 +02:00
|
|
|
|
2019-04-16 05:55:33 +02:00
|
|
|
//
|
|
|
|
// SD Support
|
|
|
|
//
|
2019-06-26 10:55:57 +02:00
|
|
|
#ifndef SDCARD_CONNECTION
|
2020-03-22 03:13:19 +01:00
|
|
|
#define SDCARD_CONNECTION ONBOARD
|
2019-04-16 05:55:33 +02:00
|
|
|
#endif
|
2018-10-13 20:58:49 +02:00
|
|
|
|
2020-03-22 03:13:19 +01:00
|
|
|
#define ONBOARD_SD_CS_PIN P0_06 // Chip select for "System" SD card
|
2018-10-26 22:23:02 +02:00
|
|
|
|
2019-06-26 10:55:57 +02:00
|
|
|
#if SD_CONNECTION_IS(LCD)
|
2021-01-01 21:31:15 +01:00
|
|
|
#define SD_SCK_PIN P0_15 // (52) system defined J3-9 & AUX-3
|
|
|
|
#define SD_MISO_PIN P0_17 // (50) system defined J3-10 & AUX-3
|
|
|
|
#define SD_MOSI_PIN P0_18 // (51) system defined J3-10 & AUX-3
|
|
|
|
#define SD_SS_PIN P1_23 // (53) system defined J3-5 & AUX-3 (Sometimes called SDSS) - CS used by Marlin
|
2019-06-26 10:55:57 +02:00
|
|
|
#elif SD_CONNECTION_IS(ONBOARD)
|
|
|
|
#undef SD_DETECT_PIN
|
2021-01-01 21:31:15 +01:00
|
|
|
#define SD_SCK_PIN P0_07
|
|
|
|
#define SD_MISO_PIN P0_08
|
|
|
|
#define SD_MOSI_PIN P0_09
|
|
|
|
#define SD_SS_PIN ONBOARD_SD_CS_PIN
|
2019-06-26 10:55:57 +02:00
|
|
|
#elif SD_CONNECTION_IS(CUSTOM_CABLE)
|
|
|
|
#error "No custom SD drive cable defined for this board."
|
2018-10-13 20:58:49 +02:00
|
|
|
#endif
|
|
|
|
|
2017-07-31 08:31:14 +02:00
|
|
|
/**
|
2018-10-26 22:23:02 +02:00
|
|
|
* Fast PWMs
|
2017-11-08 06:37:57 +01:00
|
|
|
*
|
2018-11-22 02:00:39 +01:00
|
|
|
* The LPC1768's hardware PWM controller has 6 channels. Each channel
|
2017-11-08 06:37:57 +01:00
|
|
|
* can be setup to either control a dedicated pin directly or to generate
|
2018-11-22 02:00:39 +01:00
|
|
|
* an interrupt. The direct method's duty cycle is accurate to within a
|
|
|
|
* a microsecond. The interrupt method's average duty cycle has the
|
2017-11-08 06:37:57 +01:00
|
|
|
* the same accuracy but the individual cycles can vary because of higher
|
|
|
|
* priority interrupts.
|
2017-07-31 08:31:14 +02:00
|
|
|
*
|
2017-11-08 06:37:57 +01:00
|
|
|
* All Fast PWMs have a 50Hz rate.
|
2017-07-31 08:31:14 +02:00
|
|
|
*
|
2018-11-22 02:00:39 +01:00
|
|
|
* The following pins/signals use the direct method. All other pins use the
|
2017-11-08 06:37:57 +01:00
|
|
|
* the interrupt method. Note that SERVO2_PIN and RAMPS_D8_PIN use the
|
|
|
|
* interrupt method.
|
2018-11-22 02:00:39 +01:00
|
|
|
*
|
2017-11-08 06:37:57 +01:00
|
|
|
* P1_20 (11) SERVO0_PIN
|
|
|
|
* P1_21 ( 6) SERVO1_PIN J5-1
|
|
|
|
* P0_18 ( 4) SERVO3_PIN 5V output
|
2017-11-18 19:57:32 +01:00
|
|
|
* *P2_04 ( 9) RAMPS_D9_PIN
|
|
|
|
* *P2_05 (10) RAMPS_D10_PIN
|
2017-07-31 08:31:14 +02:00
|
|
|
*
|
2018-11-22 02:00:39 +01:00
|
|
|
* * - If used as a heater driver then a Fast PWM is NOT assigned. If used as
|
2017-11-08 06:37:57 +01:00
|
|
|
* a fan driver then enabling FAST_PWM_FAN assigns a Fast PWM to it.
|
2017-06-17 23:19:42 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2018-10-26 22:23:02 +02:00
|
|
|
* Special pins
|
2018-11-22 02:00:39 +01:00
|
|
|
* P1_30 (37) (NOT 5V tolerant)
|
|
|
|
* P1_31 (49) (NOT 5V tolerant)
|
|
|
|
* P0_27 (57) (Open collector)
|
|
|
|
* P0_28 (58) (Open collector)
|
|
|
|
*/
|
2017-11-08 06:37:57 +01:00
|
|
|
|
|
|
|
/**
|
2018-11-22 02:00:39 +01:00
|
|
|
* The following mega2560 pins are NOT available in a Re-ARM system:
|
|
|
|
*
|
|
|
|
* 7, 17, 22, 23, 25, 27, 29, 32, 39, 40, 42, 43, 44, 45, 47, 64, 65, 66
|
2017-11-18 19:57:32 +01:00
|
|
|
*/
|