2019-07-09 07:30:08 +02:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
2020-02-03 15:00:57 +01:00
|
|
|
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
2019-07-09 07:30:08 +02:00
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
|
|
|
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
|
|
|
|
*
|
|
|
|
* 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/>.
|
2019-07-09 07:30:08 +02:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
|
2021-09-19 01:22:15 +02:00
|
|
|
/**
|
|
|
|
* GMARSH X6 Rev.1 pin assignments
|
|
|
|
*/
|
|
|
|
|
2021-03-05 11:30:52 +01:00
|
|
|
#include "env_validate.h"
|
2019-07-09 07:30:08 +02:00
|
|
|
|
2019-08-21 02:08:58 +02:00
|
|
|
#define BOARD_INFO_NAME "GMARSH X6 REV1"
|
2019-07-09 07:30:08 +02:00
|
|
|
|
2021-08-04 02:02:34 +02:00
|
|
|
// Ignore temp readings during development.
|
2020-08-22 08:22:14 +02:00
|
|
|
//#define BOGUS_TEMPERATURE_GRACE_PERIOD 2000
|
2019-07-09 07:30:08 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Enable 12MHz clock output on P1.27 pin to sync TMC2208 chip clocks
|
|
|
|
//
|
|
|
|
#define LPC1768_ENABLE_CLKOUT_12M
|
|
|
|
|
|
|
|
//
|
|
|
|
// Servos
|
|
|
|
//
|
2020-03-22 03:13:19 +01:00
|
|
|
#define SERVO0_PIN P1_26 // PWM1[6]
|
|
|
|
#define SERVO1_PIN P1_18 // PWM1[1]
|
2019-07-09 07:30:08 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Limit Switches
|
|
|
|
//
|
2020-03-22 03:13:19 +01:00
|
|
|
#define X_MIN_PIN P0_00
|
|
|
|
#define X_MAX_PIN P0_01
|
|
|
|
#define Y_MIN_PIN P0_10
|
|
|
|
#define Y_MAX_PIN P0_21
|
|
|
|
#define Z_MIN_PIN P2_13
|
|
|
|
#define Z_MAX_PIN P2_22
|
2019-07-09 07:30:08 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Steppers
|
|
|
|
//
|
|
|
|
|
2020-03-22 03:13:19 +01:00
|
|
|
#define X_STEP_PIN P1_01
|
|
|
|
#define X_DIR_PIN P1_04
|
|
|
|
#define X_ENABLE_PIN P0_26
|
2019-07-09 07:30:08 +02:00
|
|
|
|
2020-03-22 03:13:19 +01:00
|
|
|
#define Y_STEP_PIN P1_10
|
|
|
|
#define Y_DIR_PIN P1_14
|
|
|
|
#define Y_ENABLE_PIN P1_08
|
2019-07-09 07:30:08 +02:00
|
|
|
|
2020-03-22 03:13:19 +01:00
|
|
|
#define Z_STEP_PIN P1_17
|
|
|
|
#define Z_DIR_PIN P4_29
|
|
|
|
#define Z_ENABLE_PIN P1_15
|
2019-07-09 07:30:08 +02:00
|
|
|
|
2020-03-22 03:13:19 +01:00
|
|
|
#define E0_STEP_PIN P0_05
|
|
|
|
#define E0_DIR_PIN P2_00
|
|
|
|
#define E0_ENABLE_PIN P4_28
|
2019-07-09 07:30:08 +02:00
|
|
|
|
2020-03-22 03:13:19 +01:00
|
|
|
#define E1_STEP_PIN P2_03
|
|
|
|
#define E1_DIR_PIN P2_04
|
|
|
|
#define E1_ENABLE_PIN P2_01
|
2019-07-09 07:30:08 +02:00
|
|
|
|
2020-03-22 03:13:19 +01:00
|
|
|
#define E2_STEP_PIN P2_07
|
|
|
|
#define E2_DIR_PIN P2_08
|
|
|
|
#define E2_ENABLE_PIN P2_05
|
2019-07-09 07:30:08 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// TMC2208 UART pins
|
|
|
|
//
|
2020-02-09 04:01:57 +01:00
|
|
|
#if HAS_TMC_UART
|
2020-03-22 03:13:19 +01:00
|
|
|
#define X_SERIAL_TX_PIN P1_00
|
2021-08-21 22:07:52 +02:00
|
|
|
#define X_SERIAL_RX_PIN X_SERIAL_TX_PIN
|
|
|
|
|
2020-03-22 03:13:19 +01:00
|
|
|
#define Y_SERIAL_TX_PIN P1_09
|
2021-08-21 22:07:52 +02:00
|
|
|
#define Y_SERIAL_RX_PIN Y_SERIAL_TX_PIN
|
|
|
|
|
2020-03-22 03:13:19 +01:00
|
|
|
#define Z_SERIAL_TX_PIN P1_16
|
2021-08-21 22:07:52 +02:00
|
|
|
#define Z_SERIAL_RX_PIN Z_SERIAL_TX_PIN
|
|
|
|
|
2020-03-22 03:13:19 +01:00
|
|
|
#define E0_SERIAL_TX_PIN P0_04
|
2021-08-21 22:07:52 +02:00
|
|
|
#define E0_SERIAL_RX_PIN E0_SERIAL_TX_PIN
|
|
|
|
|
2020-03-22 03:13:19 +01:00
|
|
|
#define E1_SERIAL_TX_PIN P2_02
|
2021-08-21 22:07:52 +02:00
|
|
|
#define E1_SERIAL_RX_PIN E1_SERIAL_TX_PIN
|
|
|
|
|
2020-03-22 03:13:19 +01:00
|
|
|
#define E2_SERIAL_TX_PIN P2_06
|
2021-08-21 22:07:52 +02:00
|
|
|
#define E2_SERIAL_RX_PIN E2_SERIAL_TX_PIN
|
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-07-09 07:30:08 +02:00
|
|
|
#else
|
|
|
|
#error "TMC2208 UART configuration is required for GMarsh X6."
|
|
|
|
#endif
|
|
|
|
|
|
|
|
//
|
|
|
|
// Temperature Sensors
|
|
|
|
// 3.3V max when defined as an analog input
|
|
|
|
//
|
2020-03-22 03:13:19 +01:00
|
|
|
#define TEMP_0_PIN P0_24_A1 // AD0[0] on P0_23
|
|
|
|
#define TEMP_BED_PIN P0_23_A0 // AD0[1] on P0_24
|
2019-07-09 07:30:08 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Heaters / Fans
|
|
|
|
//
|
2020-03-22 03:13:19 +01:00
|
|
|
#define HEATER_BED_PIN P1_19 // Not a PWM pin, software PWM required
|
|
|
|
#define HEATER_0_PIN P3_26 // PWM1[3]
|
|
|
|
#define FAN_PIN P3_25 // Part cooling fan - connected to PWM1[2]
|
|
|
|
#define E0_AUTO_FAN_PIN P0_27 // Extruder cooling fan
|
2019-07-09 07:30:08 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// Misc. Functions
|
|
|
|
//
|
2020-03-22 03:13:19 +01:00
|
|
|
#define LED_PIN P1_31
|
2021-04-13 22:17:52 +02:00
|
|
|
#define POWER_MONITOR_VOLTAGE_PIN P0_25_A2
|
2019-07-09 07:30:08 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// LCD
|
|
|
|
//
|
2020-10-15 10:00:27 +02:00
|
|
|
#if IS_RRD_SC
|
2020-03-22 03:13:19 +01:00
|
|
|
#define BEEPER_PIN P0_19
|
|
|
|
#define BTN_EN1 P1_23
|
|
|
|
#define BTN_EN2 P1_24
|
|
|
|
#define BTN_ENC P1_25
|
|
|
|
#define LCD_PINS_RS P0_20
|
|
|
|
#define LCD_PINS_ENABLE P0_21
|
|
|
|
#define LCD_PINS_D4 P2_11
|
|
|
|
#define LCD_PINS_D5 P0_22
|
|
|
|
#define LCD_PINS_D6 P1_29
|
|
|
|
#define LCD_PINS_D7 P1_28
|
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
|
|
|
|
|
2019-07-09 07:30:08 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
//
|
|
|
|
// SD Support
|
|
|
|
//
|
|
|
|
|
|
|
|
#ifndef SDCARD_CONNECTION
|
2020-03-22 03:13:19 +01:00
|
|
|
#define SDCARD_CONNECTION LCD
|
2019-07-09 07:30:08 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if SD_CONNECTION_IS(LCD)
|
2021-01-01 21:31:15 +01:00
|
|
|
#define SD_SCK_PIN P0_15
|
|
|
|
#define SD_MISO_PIN P0_17
|
|
|
|
#define SD_MOSI_PIN P0_18
|
|
|
|
#define SD_SS_PIN P0_16
|
2021-04-13 22:17:52 +02:00
|
|
|
#define SD_DETECT_PIN P1_22
|
2019-07-09 07:30:08 +02:00
|
|
|
#elif SD_CONNECTION_IS(ONBOARD)
|
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
|
2021-08-25 01:07:41 +02:00
|
|
|
#define ONBOARD_SD_CS_PIN P0_06 // Chip select for "System" SD card
|
2021-01-01 21:31:15 +01:00
|
|
|
#define SD_SS_PIN ONBOARD_SD_CS_PIN
|
2019-07-09 07:30:08 +02:00
|
|
|
#endif
|