Migrate Hispeedv1 (QQS-Pro) to HAL/STM32 (#20354)
This commit is contained in:
@ -60,6 +60,9 @@
|
||||
// Note: FLSun Hispeed (clone MKS_Robin_miniV2) board is using SPI2 interface.
|
||||
//
|
||||
#define SPI_DEVICE 2
|
||||
#define SCK_PIN PB13 // SPI2
|
||||
#define MISO_PIN PB14 // SPI2
|
||||
#define MOSI_PIN PB15 // SPI2
|
||||
|
||||
// SPI Flash
|
||||
#define HAS_SPI_FLASH 1
|
||||
@ -269,43 +272,42 @@
|
||||
#error "FLSun HiSpeed default BEEPER_PIN is not a SPEAKER."
|
||||
#endif
|
||||
|
||||
/**
|
||||
* Note: MKS Robin TFT screens use various TFT controllers
|
||||
* Supported screens are based on the ILI9341, ST7789V and ILI9328 (320x240)
|
||||
* ILI9488 is not supported
|
||||
* Define init sequences for other screens in u8g_dev_tft_320x240_upscale_from_128x64.cpp
|
||||
*
|
||||
* If the screen stays white, disable 'LCD_RESET_PIN'
|
||||
* to let the bootloader init the screen.
|
||||
*
|
||||
* Setting an 'LCD_RESET_PIN' may cause a flicker when entering the LCD menu
|
||||
* because Marlin uses the reset as a failsafe to revive a glitchy LCD.
|
||||
*/
|
||||
#if HAS_FSMC_TFT || HAS_GRAPHICAL_TFT
|
||||
#define TFT_CS_PIN PD7 // NE4
|
||||
#define TFT_RS_PIN PD11 // A0
|
||||
#endif
|
||||
|
||||
// QQS-Pro uses MKS Robin TFT v2.0 320x240
|
||||
|
||||
// Shared FSMC Configs
|
||||
#if HAS_FSMC_TFT
|
||||
#define DOGLCD_MOSI -1 // Prevent auto-define by Conditionals_post.h
|
||||
#define DOGLCD_SCK -1
|
||||
|
||||
#define FSMC_CS_PIN PD7 // NE4
|
||||
#define FSMC_RS_PIN PD11 // A0
|
||||
|
||||
#define TFT_RESET_PIN PC6 // FSMC_RST
|
||||
/**
|
||||
* Note: MKS Robin TFT screens use various TFT controllers
|
||||
* Supported screens are based on the ILI9341, ST7789V and ILI9328 (320x240)
|
||||
* ILI9488 is not supported
|
||||
* Define init sequences for other screens in u8g_dev_tft_320x240_upscale_from_128x64.cpp
|
||||
*
|
||||
* If the screen stays white, disable 'LCD_RESET_PIN'
|
||||
* to let the bootloader init the screen.
|
||||
*
|
||||
* Setting an 'LCD_RESET_PIN' may cause a flicker when entering the LCD menu
|
||||
* because Marlin uses the reset as a failsafe to revive a glitchy LCD.
|
||||
*/
|
||||
//#define TFT_RESET_PIN PC6 // FSMC_RST
|
||||
#define TFT_BACKLIGHT_PIN PD13
|
||||
#define FSMC_CS_PIN TFT_CS_PIN // NE4
|
||||
#define FSMC_RS_PIN TFT_RS_PIN // A0
|
||||
|
||||
#define LCD_USE_DMA_FSMC // Use DMA transfers to send data to the TFT
|
||||
#define FSMC_DMA_DEV DMA2
|
||||
#define FSMC_DMA_CHANNEL DMA_CH5
|
||||
|
||||
#define TFT_BUFFER_SIZE 14400
|
||||
#if ENABLED(TFT_CLASSIC_UI)
|
||||
#define TFT_MARLINBG_COLOR 0x3186 // White
|
||||
#define TFT_MARLINUI_COLOR 0xC7B6 // green
|
||||
#ifdef TFT_CLASSIC_UI
|
||||
#define TFT_MARLINBG_COLOR 0x3186 // Grey
|
||||
#define TFT_MARLINUI_COLOR 0xC7B6 // Green
|
||||
#define TFT_BTARROWS_COLOR 0xDEE6 // Yellow
|
||||
#define TFT_BTOKMENU_COLOR 0x145F // Cyan
|
||||
#endif
|
||||
#endif
|
||||
#define TFT_BUFFER_SIZE 14400
|
||||
#elif HAS_GRAPHICAL_TFT
|
||||
#define TFT_RESET_PIN PC6
|
||||
#define TFT_BACKLIGHT_PIN PD13
|
||||
#endif
|
||||
|
||||
#if NEED_TOUCH_PINS
|
||||
@ -313,4 +315,5 @@
|
||||
#define TOUCH_SCK_PIN PB13 // SPI2_SCK
|
||||
#define TOUCH_MISO_PIN PB14 // SPI2_MISO
|
||||
#define TOUCH_MOSI_PIN PB15 // SPI2_MOSI
|
||||
#define TOUCH_INT_PIN -1
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user