1
0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2024-12-02 08:09:36 +00:00

🩹 Fix and improve GT2560 pins (#25890)

Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
This commit is contained in:
DejitaruJin 2023-05-28 21:22:00 -04:00 committed by GitHub
parent b4ba3dd7f3
commit d926d4dea4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 83 additions and 51 deletions

View File

@ -47,14 +47,12 @@
#define Y_MAX_PIN 28 #define Y_MAX_PIN 28
#define Z_MIN_PIN 30 #define Z_MIN_PIN 30
#if ENABLED(BLTOUCH) #if ENABLED(BLTOUCH) && !defined(SERVO0_PIN)
#if MB(GT2560_REV_A_PLUS)
#define SERVO0_PIN 11
#define Z_MAX_PIN 32
#else
#define SERVO0_PIN 32 #define SERVO0_PIN 32
#define Z_MAX_PIN -1
#endif #endif
#if SERVO0_PIN == 32
#define Z_MAX_PIN -1
#else #else
#define Z_MAX_PIN 32 #define Z_MAX_PIN 32
#endif #endif
@ -102,64 +100,100 @@
// //
// Misc. Functions // Misc. Functions
// //
#define SDSS 53
// Power monitoring pins - set to 0 for main VIN, 1 for dedicated bed supply rail.
// Don't forget to enable POWER_MONITOR_VOLTAGE in Configuration_adv.h
// and set POWER_MONITOR_VOLTS_PER_VOLT to 0.090909.
#define POWER_MONITOR_VOLTAGE_PIN 0
/** LCD SDCARD
* ------ ------
* (TX1) 18 | 1 2 | 19 (RX1) (MISO) 50 | 1 2 | 52 (SCK)
* (RX2) 17 | 3 4 | 20 (SDA) 42 | 3 4 | 53 (SS)
* (TX2) 16 | 5 6 21 (SCL) 40 | 5 6 51 (MOSI)
* 5 | 7 8 | 6 38 | 7 8 | RESET
* GND | 9 10 | 5V GND | 9 10 | 5V/3V3
* ------ ------
* SV1 SV3
*
* GT2560 LCD & SD headers follow typical EXP1 & EXP2 format.
* SD header voltage pin set by link pads beneath the header; R25 for 5V, R44 for 3.3V (default)
* Pins 20 (SDA) and 21 (SCL) have external 10K pull-ups on the board.
*/
#define EXP1_01_PIN 18 // TX1 / BEEPER
#define EXP1_02_PIN 19 // RX1 / ENC
#define EXP1_03_PIN 17 // RX2 / CS
#define EXP1_04_PIN 20 // SDA / A0
#define EXP1_05_PIN 16 // TX2 / LCD_RS
#define EXP1_06_PIN 21 // SCL / CS
#define EXP1_07_PIN 5 // D6 / A0
#define EXP1_08_PIN 6 // D7 / D4
#define EXP2_01_PIN 50 // MISO
#define EXP2_02_PIN 52 // SCK
#define EXP2_03_PIN 42 // EN2
#define EXP2_04_PIN 53 // SDSS
#define EXP2_05_PIN 40 // EN1
#define EXP2_06_PIN 51 // MOSI
#define EXP2_07_PIN 38 // SD_DET
#define EXP2_08_PIN -1 // RESET
#define SDSS EXP2_04_PIN
#define LED_PIN 13 #define LED_PIN 13
#define PS_ON_PIN 12
#define SUICIDE_PIN 54 // Must be enabled at startup to keep power flowing
#define KILL_PIN -1
#if HAS_WIRED_LCD #if HAS_WIRED_LCD
#define BEEPER_PIN 18 #define BEEPER_PIN EXP1_01_PIN
#if IS_NEWPANEL #if IS_NEWPANEL
#if ENABLED(MKS_MINI_12864) #if ENABLED(MKS_MINI_12864)
#define DOGLCD_A0 5 #define DOGLCD_CS EXP1_06_PIN
#define DOGLCD_CS 21 #define DOGLCD_A0 EXP1_07_PIN
#define BTN_EN1 40 #define BTN_EN1 EXP2_05_PIN
#define BTN_EN2 42 #define BTN_EN2 EXP2_03_PIN
#elif ENABLED(FYSETC_MINI_12864) #elif ENABLED(FYSETC_MINI_12864)
// Disconnect EXP2-1 and EXP2-2, otherwise future firmware upload won't work. // Disconnect EXP2-1 and EXP2-2, otherwise future firmware upload won't work.
#define DOGLCD_A0 20 #define DOGLCD_CS EXP1_03_PIN
#define DOGLCD_CS 17 #define DOGLCD_A0 EXP1_04_PIN
#define NEOPIXEL_PIN 21 #define NEOPIXEL_PIN EXP1_06_PIN
#define BTN_EN1 42 #define BTN_EN1 EXP2_03_PIN
#define BTN_EN2 40 #define BTN_EN2 EXP2_05_PIN
#define LCD_RESET_PIN 16 #define LCD_RESET_PIN EXP1_05_PIN
#define LCD_CONTRAST_INIT 220 #define LCD_CONTRAST_INIT 220
#define LCD_BACKLIGHT_PIN -1 #define LCD_BACKLIGHT_PIN -1
#else #else
#define LCD_PINS_RS 20 #define LCD_PINS_RS EXP1_04_PIN
#define LCD_PINS_EN 17 #define LCD_PINS_EN EXP1_03_PIN
#define LCD_PINS_D4 16 #define LCD_PINS_D4 EXP1_05_PIN
#define LCD_PINS_D5 21 #define LCD_PINS_D5 EXP1_06_PIN
#define LCD_PINS_D6 5 #define LCD_PINS_D6 EXP1_07_PIN
#define LCD_PINS_D7 6 #define LCD_PINS_D7 EXP1_08_PIN
#define BTN_EN1 42 #define BTN_EN1 EXP2_03_PIN
#define BTN_EN2 40 #define BTN_EN2 EXP2_05_PIN
#endif #endif
#define BTN_ENC 19 #define BTN_ENC EXP1_02_PIN
#define SD_DETECT_PIN 38 #define SD_DETECT_PIN EXP2_07_PIN
#else // !IS_NEWPANEL #else // !IS_NEWPANEL
#define SHIFT_CLK_PIN 38 #define SHIFT_CLK_PIN EXP2_07_PIN
#define SHIFT_LD_PIN 42 #define SHIFT_LD_PIN EXP2_03_PIN
#define SHIFT_OUT_PIN 40 #define SHIFT_OUT_PIN EXP2_05_PIN
#define SHIFT_EN_PIN 17 #define SHIFT_EN_PIN EXP1_03_PIN
#define LCD_PINS_RS 16 #define LCD_PINS_RS EXP1_05_PIN
#define LCD_PINS_EN 5 #define LCD_PINS_EN EXP1_07_PIN
#define LCD_PINS_D4 6 #define LCD_PINS_D4 EXP1_08_PIN
#define LCD_PINS_D5 21 #define LCD_PINS_D5 EXP1_06_PIN
#define LCD_PINS_D6 20 #define LCD_PINS_D6 EXP1_04_PIN
#define LCD_PINS_D7 19 #define LCD_PINS_D7 EXP1_02_PIN
#if ENABLED(REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER) #if ENABLED(REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER)
#define BTN_ENC_EN LCD_PINS_D7 // Detect the presence of the encoder #define BTN_ENC_EN LCD_PINS_D7 // Detect the presence of the encoder

View File

@ -30,8 +30,6 @@
#define BOARD_INFO_NAME "GT2560 Rev.A+" #define BOARD_INFO_NAME "GT2560 Rev.A+"
#include "pins_GT2560_REV_A.h" #define SERVO0_PIN 11
#if DISABLED(BLTOUCH) #include "pins_GT2560_REV_A.h"
#define SERVO0_PIN 32
#endif