More general FSMC display option
This commit is contained in:
		
							parent
							
								
									c942ca130f
								
							
						
					
					
						commit
						bc58e678bd
					
				@ -2031,9 +2031,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -232,7 +232,7 @@
 | 
			
		||||
 /**
 | 
			
		||||
  * FSMC/SPI TFT PANELS
 | 
			
		||||
  */
 | 
			
		||||
 #if ENABLED(MKS_ROBIN_TFT)
 | 
			
		||||
 #if ENABLED(FSMC_GRAPHICAL_TFT)
 | 
			
		||||
   #define DOGLCD
 | 
			
		||||
   #define IS_ULTIPANEL
 | 
			
		||||
   #define DELAYED_BACKLIGHT_INIT
 | 
			
		||||
 | 
			
		||||
@ -382,6 +382,8 @@
 | 
			
		||||
  #error "Replace POWER_SUPPLY 2 by enabling PSU_CONTROL and setting PSU_ACTIVE_HIGH to 'true'."
 | 
			
		||||
#elif defined(POWER_SUPPLY)
 | 
			
		||||
  #error "POWER_SUPPLY is now obsolete. Please remove it from Configuration.h."
 | 
			
		||||
#elif defined(MKS_ROBIN_TFT)
 | 
			
		||||
  #error "MKS_ROBIN_TFT is now FSMC_GRAPHICAL_TFT. Please update your configuration."
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#define BOARD_MKS_13        -1109
 | 
			
		||||
@ -1887,7 +1889,7 @@ static_assert(Y_MAX_LENGTH >= Y_BED_SIZE, "Movement bounds (Y_MIN_POS, Y_MAX_POS
 | 
			
		||||
  + ENABLED(U8GLIB_SH1106_EINSTART) \
 | 
			
		||||
  + ENABLED(DGUS_LCD) \
 | 
			
		||||
  + ENABLED(MALYAN_LCD) \
 | 
			
		||||
  + ENABLED(MKS_ROBIN_TFT)
 | 
			
		||||
  + ENABLED(FSMC_GRAPHICAL_TFT)
 | 
			
		||||
  #error "Please select no more than one LCD controller option."
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -126,7 +126,7 @@
 | 
			
		||||
  // Connected via motherboard header
 | 
			
		||||
  #define U8G_CLASS U8GLIB_SH1106_128X64
 | 
			
		||||
  #define U8G_PARAM DOGLCD_SCK, DOGLCD_MOSI, DOGLCD_CS, LCD_PINS_DC, LCD_PINS_RS
 | 
			
		||||
#elif ENABLED(MKS_ROBIN_TFT)
 | 
			
		||||
#elif ENABLED(FSMC_GRAPHICAL_TFT)
 | 
			
		||||
  // Unspecified 320x240 TFT pre-initialized by built-in bootloader
 | 
			
		||||
  #define U8G_CLASS U8GLIB_TFT_320X240_UPSCALE_FROM_128X64
 | 
			
		||||
  #define U8G_PARAM FSMC_CS_PIN, FSMC_RS_PIN
 | 
			
		||||
 | 
			
		||||
@ -115,7 +115,7 @@
 | 
			
		||||
 * If the screen stays white, disable 'LCD_RESET_PIN'
 | 
			
		||||
 * to let the bootloader init the screen.
 | 
			
		||||
 */
 | 
			
		||||
#if ENABLED(MKS_ROBIN_TFT)
 | 
			
		||||
#if ENABLED(FSMC_GRAPHICAL_TFT)
 | 
			
		||||
  #define LCD_RESET_PIN    PF6
 | 
			
		||||
  #define NO_LCD_REINIT           // Suppress LCD re-initialization
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -119,7 +119,7 @@
 | 
			
		||||
 * If the screen stays white, disable 'LCD_RESET_PIN'
 | 
			
		||||
 * to let the bootloader init the screen.
 | 
			
		||||
 */
 | 
			
		||||
#if ENABLED(MKS_ROBIN_TFT)
 | 
			
		||||
#if ENABLED(FSMC_GRAPHICAL_TFT)
 | 
			
		||||
  #define LCD_RESET_PIN      PF6
 | 
			
		||||
  #define NO_LCD_REINIT             // Suppress LCD re-initialization
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
@ -2030,9 +2030,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2061,9 +2061,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2050,9 +2050,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2121,9 +2121,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display OR Alfawise. Same interface is used.
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
#define MKS_ROBIN_TFT
 | 
			
		||||
#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2030,9 +2030,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2041,9 +2041,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2032,9 +2032,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2032,9 +2032,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2183,9 +2183,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2045,9 +2045,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2041,9 +2041,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2042,9 +2042,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2040,9 +2040,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2031,9 +2031,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2030,9 +2030,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2030,9 +2030,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2030,9 +2030,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2018,9 +2018,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2030,9 +2030,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2018,9 +2018,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2029,9 +2029,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2040,9 +2040,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2031,9 +2031,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2033,9 +2033,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2049,9 +2049,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2033,9 +2033,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2033,9 +2033,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2040,9 +2040,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2034,9 +2034,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2034,9 +2034,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2040,9 +2040,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2033,9 +2033,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2030,9 +2030,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2035,9 +2035,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2040,9 +2040,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2035,9 +2035,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2036,9 +2036,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2035,9 +2035,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2018,9 +2018,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2035,9 +2035,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2032,9 +2032,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2012,9 +2012,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2012,9 +2012,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2021,9 +2021,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2036,9 +2036,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2135,9 +2135,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2064,9 +2064,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2058,9 +2058,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2015,9 +2015,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2015,9 +2015,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2017,9 +2017,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2045,9 +2045,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2030,9 +2030,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2037,9 +2037,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2051,9 +2051,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2050,9 +2050,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2030,9 +2030,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2030,9 +2030,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2034,9 +2034,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2033,9 +2033,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// Also used for JGAurora A5S & A1 TFT LCD's (16-bit Parallel LCD via FSMC)
 | 
			
		||||
#define MKS_ROBIN_TFT
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2042,9 +2042,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2033,9 +2033,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// Also used for JGAurora A5S & A1 TFT LCD's (16-bit Parallel LCD via FSMC)
 | 
			
		||||
#define MKS_ROBIN_TFT
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
#define PRINTER_EVENT_LEDS
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
@ -2050,9 +2050,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2058,9 +2058,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2029,9 +2029,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2034,9 +2034,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2034,9 +2034,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2032,9 +2032,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
#define MKS_ROBIN_TFT
 | 
			
		||||
#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2030,9 +2030,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2038,9 +2038,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2030,9 +2030,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2079,9 +2079,9 @@ Black rubber belt(MXL), 18 - tooth aluminium pulley : 87.489 step per mm (Huxley
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2030,9 +2030,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2030,9 +2030,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2039,9 +2039,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2030,9 +2030,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2032,9 +2032,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2030,9 +2030,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2032,9 +2032,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2061,9 +2061,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2035,9 +2035,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2028,9 +2028,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2035,9 +2035,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2035,9 +2035,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2030,9 +2030,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2086,9 +2086,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2030,9 +2030,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2034,9 +2034,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2051,9 +2051,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2030,9 +2030,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2041,9 +2041,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2030,9 +2030,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2030,9 +2030,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
@ -2039,9 +2039,9 @@
 | 
			
		||||
//=============================================================================
 | 
			
		||||
 | 
			
		||||
//
 | 
			
		||||
// MKS Robin 320x240 color display
 | 
			
		||||
// FSMC display (MKS Robin, Alfawise U20, JGAurora A5S, A1, etc.)
 | 
			
		||||
//
 | 
			
		||||
//#define MKS_ROBIN_TFT
 | 
			
		||||
//#define FSMC_GRAPHICAL_TFT
 | 
			
		||||
 | 
			
		||||
//=============================================================================
 | 
			
		||||
//============================  Other Controllers  ============================
 | 
			
		||||
 | 
			
		||||
Some files were not shown because too many files have changed in this diff Show More
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user