Fixes for FYSETC Cheetah (#17935)
This commit is contained in:
parent
798dc68847
commit
98fdc67f1d
@ -1381,7 +1381,6 @@
|
|||||||
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
//#define AO_EXP2_PINMAP // AlephObjects CLCD UI EXP2 mapping
|
||||||
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
//#define CR10_TFT_PINMAP // Rudolph Riedel's CR10 pin mapping
|
||||||
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
//#define S6_TFT_PINMAP // FYSETC S6 pin mapping
|
||||||
//#define CHEETAH_TFT_PINMAP // FYSETC Cheetah pin mapping
|
|
||||||
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, and Stock boards) EXP1 pin mapping
|
//#define E3_EXP1_PINMAP // E3 type boards (SKR E3/DIP, and Stock boards) EXP1 pin mapping
|
||||||
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
//#define GENERIC_EXP2_PINMAP // GENERIC EXP2 pin mapping
|
||||||
|
|
||||||
|
@ -163,18 +163,3 @@
|
|||||||
#define CLCD_MOD_RESET BTN_EN1
|
#define CLCD_MOD_RESET BTN_EN1
|
||||||
#define CLCD_SPI_CS LCD_PINS_RS
|
#define CLCD_SPI_CS LCD_PINS_RS
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef CHEETAH_TFT_PINMAP
|
|
||||||
#ifndef __MARLIN_FIRMWARE__
|
|
||||||
#error "This pin mapping requires Marlin."
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#define CLCD_MOD_RESET BTN_EN1
|
|
||||||
#define CLCD_SPI_CS LCD_PINS_RS
|
|
||||||
|
|
||||||
#if ENABLED(CLCD_USE_SOFT_SPI)
|
|
||||||
#define CLCD_SOFT_SPI_MOSI LCD_PINS_ENABLE
|
|
||||||
#define CLCD_SOFT_SPI_MISO LCD_PINS_SCK
|
|
||||||
#define CLCD_SOFT_SPI_SCLK LCD_PINS_D4
|
|
||||||
#endif
|
|
||||||
#endif
|
|
||||||
|
@ -29,6 +29,7 @@
|
|||||||
|
|
||||||
#define BOARD_INFO_NAME "FYSETC Cheetah"
|
#define BOARD_INFO_NAME "FYSETC Cheetah"
|
||||||
#define BOARD_WEBSITE_URL "fysetc.com"
|
#define BOARD_WEBSITE_URL "fysetc.com"
|
||||||
|
// https://github.com/FYSETC/Cheetah
|
||||||
|
|
||||||
// Ignore temp readings during development.
|
// Ignore temp readings during development.
|
||||||
//#define BOGUS_TEMPERATURE_GRACE_PERIOD 2000
|
//#define BOGUS_TEMPERATURE_GRACE_PERIOD 2000
|
||||||
@ -103,39 +104,41 @@
|
|||||||
// Misc. Functions
|
// Misc. Functions
|
||||||
//
|
//
|
||||||
#define SDSS PA4
|
#define SDSS PA4
|
||||||
|
#define SD_DETECT_PIN PC3
|
||||||
|
|
||||||
//
|
#ifndef RGB_LED_R_PIN
|
||||||
// LCD Pins
|
#define RGB_LED_R_PIN PB0
|
||||||
//
|
#endif
|
||||||
/**
|
#ifndef RGB_LED_G_PIN
|
||||||
* _____
|
#define RGB_LED_G_PIN PB7
|
||||||
* 5V | 1 2 | GND
|
#endif
|
||||||
* (MOSI) PB15 | 3 4 | PB12 (LCD_EN)
|
#ifndef RGB_LED_B_PIN
|
||||||
* (SCK) PB13 | 5 6 PC11 (BTN_EN1)
|
#define RGB_LED_B_PIN PB6
|
||||||
* (LCD_RS) PB14 | 7 8 | PC10 (BTN_EN2)
|
#endif
|
||||||
* (BTN_ENC) PC12 | 9 10| PC9 (BEEPER)
|
|
||||||
* -----
|
|
||||||
* EXP1
|
|
||||||
*/
|
|
||||||
|
|
||||||
#define EXPA1_03_PIN PB15
|
/*
|
||||||
#define EXPA1_04_PIN PB12
|
* EXP1 pinout for the LCD according to Fysetcs schematic for the Cheetah board
|
||||||
#define EXPA1_05_PIN PB13
|
* _____
|
||||||
#define EXPA1_06_PIN PC11
|
* (Beeper) PC9 | 1 2 | PC12 (BTN_ENC)
|
||||||
#define EXPA1_07_PIN PB14
|
* (BTN_EN2) PC11 | 3 4 | PB14 (LCD_RS / MISO)
|
||||||
#define EXPA1_08_PIN PC10
|
* (BTN_EN1) PC10 5 6 | PB13 (SCK)
|
||||||
#define EXPA1_09_PIN PC12
|
* (LCD_EN) PB12 | 7 8 | PB15 (MOSI)
|
||||||
#define EXPA1_10_PIN PC9
|
* GND | 9 10| 5V
|
||||||
|
* -----
|
||||||
|
* EXP1
|
||||||
|
* Note: The pin-numbers match the connector correctly and are not in reverse order like on the Ender-3 board.
|
||||||
|
* Note: Functionally the pins are assigned in the same order as on the Ender-3 board.
|
||||||
|
* Note: Pin 4 on the Cheetah board is assigned to an I/O, it is assigned to RESET on the Ender-3 board.
|
||||||
|
*/
|
||||||
|
|
||||||
#if HAS_SPI_LCD
|
#if HAS_SPI_LCD
|
||||||
|
#define BEEPER_PIN PC9
|
||||||
#define BEEPER_PIN EXPA1_10_PIN
|
|
||||||
|
|
||||||
#if HAS_GRAPHICAL_LCD
|
#if HAS_GRAPHICAL_LCD
|
||||||
#define DOGLCD_A0 EXPA1_07_PIN
|
#define DOGLCD_A0 PB14
|
||||||
#define DOGLCD_CS EXPA1_04_PIN
|
#define DOGLCD_CS PB12
|
||||||
#define DOGLCD_SCK EXPA1_05_PIN
|
#define DOGLCD_SCK PB13
|
||||||
#define DOGLCD_MOSI EXPA1_03_PIN
|
#define DOGLCD_MOSI PB15
|
||||||
//#define LCD_SCREEN_ROT_90
|
//#define LCD_SCREEN_ROT_90
|
||||||
//#define LCD_SCREEN_ROT_180
|
//#define LCD_SCREEN_ROT_180
|
||||||
//#define LCD_SCREEN_ROT_270
|
//#define LCD_SCREEN_ROT_270
|
||||||
@ -145,45 +148,31 @@
|
|||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define LCD_PINS_RS EXPA1_04_PIN // CS -- SOFT SPI for ENDER3 LCD
|
#define LCD_PINS_RS PB12 // CS -- SOFT SPI for ENDER3 LCD
|
||||||
#define LCD_PINS_D4 EXPA1_05_PIN // SCLK
|
#define LCD_PINS_D4 PB13 // SCLK
|
||||||
#define LCD_PINS_ENABLE EXPA1_03_PIN // DATA MOSI
|
#define LCD_PINS_ENABLE PB15 // DATA MOSI
|
||||||
|
|
||||||
// not connected to a pin
|
|
||||||
#define SD_DETECT_PIN PC3
|
|
||||||
|
|
||||||
#ifndef RGB_LED_R_PIN
|
|
||||||
#define RGB_LED_R_PIN PB0
|
|
||||||
#endif
|
|
||||||
#ifndef RGB_LED_G_PIN
|
|
||||||
#define RGB_LED_G_PIN PB7
|
|
||||||
#endif
|
|
||||||
#ifndef RGB_LED_B_PIN
|
|
||||||
#define RGB_LED_B_PIN PB6
|
|
||||||
#endif
|
|
||||||
|
|
||||||
//#define LCD_CONTRAST_INIT 190
|
//#define LCD_CONTRAST_INIT 190
|
||||||
|
|
||||||
#if ENABLED(NEWPANEL)
|
#if ENABLED(NEWPANEL)
|
||||||
#define BTN_EN1 EXPA1_06_PIN
|
#define BTN_EN1 PC10
|
||||||
#define BTN_EN2 EXPA1_08_PIN
|
#define BTN_EN2 PC11
|
||||||
#define BTN_ENC EXPA1_09_PIN
|
#define BTN_ENC PC12
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#if ENABLED(TOUCH_UI_FTDI_EVE)
|
#if ENABLED(TOUCH_UI_FTDI_EVE)
|
||||||
#define BEEPER_PIN EXPA1_10_PIN
|
#define BEEPER_PIN PC9
|
||||||
|
#define CLCD_MOD_RESET PC11
|
||||||
|
#define CLCD_SPI_CS PB12
|
||||||
|
|
||||||
#define BTN_EN1 EXPA1_06_PIN
|
//#define CLCD_USE_SOFT_SPI // the Cheetah can use hardware-SPI so we do not really need this
|
||||||
|
|
||||||
#define LCD_PINS_RS EXPA1_04_PIN
|
|
||||||
|
|
||||||
#define CLCD_SPI_BUS 2
|
|
||||||
//#define CLCD_USE_SOFT_SPI
|
|
||||||
#if ENABLED(CLCD_USE_SOFT_SPI)
|
#if ENABLED(CLCD_USE_SOFT_SPI)
|
||||||
#define LCD_PINS_ENABLE EXPA1_03_PIN
|
#define CLCD_SOFT_SPI_MOSI PB15
|
||||||
#define LCD_PINS_SCK EXPA1_07_PIN
|
#define CLCD_SOFT_SPI_MISO PB14
|
||||||
#define LCD_PINS_D4 EXPA1_05_PIN
|
#define CLCD_SOFT_SPI_SCLK PB13
|
||||||
|
#else
|
||||||
|
#define CLCD_SPI_BUS 2
|
||||||
#endif
|
#endif
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user