69da8719cf
Co-authored-by: Scott Lahteine <thinkyhead@users.noreply.github.com>
1209 lines
33 KiB
C
1209 lines
33 KiB
C
/**
|
|
* Marlin 3D Printer Firmware
|
|
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
|
*
|
|
* 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
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*
|
|
*/
|
|
#pragma once
|
|
|
|
/**
|
|
* Conditionals_LCD.h
|
|
* Conditionals that need to be set before Configuration_adv.h or pins.h
|
|
*/
|
|
|
|
// MKS_LCD12864 is a variant of MKS_MINI_12864
|
|
#if ENABLED(MKS_LCD12864)
|
|
#define MKS_MINI_12864
|
|
#endif
|
|
|
|
/**
|
|
* General Flags that may be set below by specific LCDs
|
|
*
|
|
* DOGLCD : Run a Graphical LCD through U8GLib (with MarlinUI)
|
|
* IS_ULTIPANEL : Define LCD_PINS_D5/6/7 for direct-connected "Ultipanel" LCDs
|
|
* IS_ULTRA_LCD : Ultra LCD, not necessarily Ultipanel.
|
|
* IS_RRD_SC : Common RRD Smart Controller digital interface pins
|
|
* IS_RRD_FG_SC : Common RRD Full Graphical Smart Controller digital interface pins
|
|
* U8GLIB_ST7920 : Most common DOGM display SPI interface, supporting a "lightweight" display mode.
|
|
* U8GLIB_SH1106 : SH1106 OLED with I2C interface via U8GLib
|
|
* IS_U8GLIB_SSD1306 : SSD1306 OLED with I2C interface via U8GLib
|
|
* U8GLIB_SSD1309 : SSD1309 OLED with I2C interface via U8GLib
|
|
* U8GLIB_ST7565_64128N : ST7565 128x64 LCD with SPI interface via U8GLib
|
|
* U8GLIB_LM6059_AF : LM6059 with Hardware SPI via U8GLib
|
|
*/
|
|
#if EITHER(MKS_MINI_12864, ENDER2_STOCKDISPLAY)
|
|
|
|
#define MINIPANEL
|
|
|
|
#elif ENABLED(CARTESIO_UI)
|
|
|
|
#define DOGLCD
|
|
#define IS_ULTIPANEL 1
|
|
|
|
#elif EITHER(DWIN_MARLINUI_PORTRAIT, DWIN_MARLINUI_LANDSCAPE)
|
|
|
|
#define IS_DWIN_MARLINUI 1
|
|
#define IS_ULTIPANEL 1
|
|
|
|
#elif ENABLED(ZONESTAR_LCD)
|
|
|
|
#define HAS_ADC_BUTTONS 1
|
|
#define REPRAPWORLD_KEYPAD_MOVE_STEP 10.0
|
|
#define ADC_KEY_NUM 8
|
|
#define IS_ULTIPANEL 1
|
|
|
|
// This helps to implement HAS_ADC_BUTTONS menus
|
|
#define REVERSE_MENU_DIRECTION
|
|
#define ENCODER_PULSES_PER_STEP 1
|
|
#define ENCODER_STEPS_PER_MENU_ITEM 1
|
|
#define ENCODER_FEEDRATE_DEADZONE 2
|
|
|
|
#elif ENABLED(ZONESTAR_12864LCD)
|
|
#define DOGLCD
|
|
#define IS_RRD_SC 1
|
|
#define U8GLIB_ST7920
|
|
|
|
#elif ENABLED(ZONESTAR_12864OLED)
|
|
#define IS_RRD_SC 1
|
|
#define U8GLIB_SH1106
|
|
|
|
#elif ENABLED(ZONESTAR_12864OLED_SSD1306)
|
|
#define IS_RRD_SC 1
|
|
#define IS_U8GLIB_SSD1306
|
|
|
|
#elif ENABLED(RADDS_DISPLAY)
|
|
#define IS_ULTIPANEL 1
|
|
#define ENCODER_PULSES_PER_STEP 2
|
|
|
|
#elif ANY(miniVIKI, VIKI2, ELB_FULL_GRAPHIC_CONTROLLER, AZSMZ_12864)
|
|
|
|
#define DOGLCD
|
|
#define IS_ULTIPANEL 1
|
|
|
|
#if ENABLED(miniVIKI)
|
|
#define U8GLIB_ST7565_64128N
|
|
#elif ENABLED(VIKI2)
|
|
#define U8GLIB_ST7565_64128N
|
|
#elif ENABLED(ELB_FULL_GRAPHIC_CONTROLLER)
|
|
#define U8GLIB_LM6059_AF
|
|
#elif ENABLED(AZSMZ_12864)
|
|
#define U8GLIB_ST7565_64128N
|
|
#endif
|
|
|
|
#elif ENABLED(OLED_PANEL_TINYBOY2)
|
|
|
|
#define IS_U8GLIB_SSD1306
|
|
#define IS_ULTIPANEL 1
|
|
|
|
#elif ENABLED(RA_CONTROL_PANEL)
|
|
|
|
#define LCD_I2C_TYPE_PCA8574
|
|
#define LCD_I2C_ADDRESS 0x27 // I2C Address of the port expander
|
|
#define IS_ULTIPANEL 1
|
|
|
|
#elif ENABLED(REPRAPWORLD_GRAPHICAL_LCD)
|
|
|
|
#define DOGLCD
|
|
#define U8GLIB_ST7920
|
|
#define IS_ULTIPANEL 1
|
|
|
|
#elif ENABLED(MKS_12864OLED)
|
|
|
|
#define IS_RRD_SC 1
|
|
#define U8GLIB_SH1106
|
|
|
|
#elif ENABLED(MKS_12864OLED_SSD1306)
|
|
|
|
#define IS_RRD_SC 1
|
|
#define IS_U8GLIB_SSD1306
|
|
|
|
#elif ENABLED(FYSETC_242_OLED_12864)
|
|
|
|
#define IS_RRD_SC 1
|
|
#define U8GLIB_SH1106
|
|
|
|
#define LED_CONTROL_MENU
|
|
#define NEOPIXEL_LED
|
|
#undef NEOPIXEL_TYPE
|
|
#define NEOPIXEL_TYPE NEO_RGB
|
|
#if NEOPIXEL_PIXELS < 3
|
|
#undef NEOPIXELS_PIXELS
|
|
#define NEOPIXEL_PIXELS 3
|
|
#endif
|
|
#ifndef NEOPIXEL_BRIGHTNESS
|
|
#define NEOPIXEL_BRIGHTNESS 127
|
|
#endif
|
|
|
|
#if ENABLED(PSU_CONTROL)
|
|
#define LED_BACKLIGHT_TIMEOUT 10000
|
|
#endif
|
|
|
|
#elif ANY(FYSETC_MINI_12864_X_X, FYSETC_MINI_12864_1_2, FYSETC_MINI_12864_2_0, FYSETC_MINI_12864_2_1, FYSETC_GENERIC_12864_1_1)
|
|
|
|
#define FYSETC_MINI_12864
|
|
#define DOGLCD
|
|
#define IS_ULTIPANEL 1
|
|
#define LED_COLORS_REDUCE_GREEN
|
|
#if ENABLED(PSU_CONTROL) && EITHER(FYSETC_MINI_12864_2_0, FYSETC_MINI_12864_2_1)
|
|
#define LED_BACKLIGHT_TIMEOUT 10000
|
|
#endif
|
|
|
|
// Require LED backlighting enabled
|
|
#if EITHER(FYSETC_MINI_12864_1_2, FYSETC_MINI_12864_2_0)
|
|
#define RGB_LED
|
|
#elif ENABLED(FYSETC_MINI_12864_2_1)
|
|
#define LED_CONTROL_MENU
|
|
#define NEOPIXEL_LED
|
|
#undef NEOPIXEL_TYPE
|
|
#define NEOPIXEL_TYPE NEO_RGB
|
|
#if NEOPIXEL_PIXELS < 3
|
|
#undef NEOPIXELS_PIXELS
|
|
#define NEOPIXEL_PIXELS 3
|
|
#endif
|
|
#ifndef NEOPIXEL_BRIGHTNESS
|
|
#define NEOPIXEL_BRIGHTNESS 127
|
|
#endif
|
|
//#define NEOPIXEL_STARTUP_TEST
|
|
#endif
|
|
|
|
#elif ENABLED(ULTI_CONTROLLER)
|
|
|
|
#define IS_ULTIPANEL 1
|
|
#define U8GLIB_SSD1309
|
|
#define LCD_RESET_PIN LCD_PINS_D6 // This controller need a reset pin
|
|
#define ENCODER_PULSES_PER_STEP 2
|
|
#define ENCODER_STEPS_PER_MENU_ITEM 2
|
|
|
|
#elif ENABLED(MAKEBOARD_MINI_2_LINE_DISPLAY_1602)
|
|
|
|
#define IS_RRD_SC 1
|
|
#define LCD_WIDTH 16
|
|
#define LCD_HEIGHT 2
|
|
|
|
#elif EITHER(TFTGLCD_PANEL_SPI, TFTGLCD_PANEL_I2C)
|
|
|
|
#define IS_TFTGLCD_PANEL 1
|
|
#define IS_ULTIPANEL 1 // Note that IS_ULTIPANEL leads to HAS_WIRED_LCD
|
|
|
|
#if ENABLED(SDSUPPORT) && DISABLED(LCD_PROGRESS_BAR)
|
|
#define LCD_PROGRESS_BAR
|
|
#endif
|
|
#if ENABLED(TFTGLCD_PANEL_I2C)
|
|
#define LCD_I2C_ADDRESS 0x27 // Must be equal to panel's I2C slave addres
|
|
#endif
|
|
#define LCD_USE_I2C_BUZZER // Enable buzzer on LCD, used for both I2C and SPI buses (LiquidTWI2 not required)
|
|
#define STD_ENCODER_PULSES_PER_STEP 2
|
|
#define STD_ENCODER_STEPS_PER_MENU_ITEM 1
|
|
#define LCD_WIDTH 20 // 20 or 24 chars in line
|
|
#define LCD_HEIGHT 10 // Character lines
|
|
#define LCD_CONTRAST_MIN 127
|
|
#define LCD_CONTRAST_MAX 255
|
|
#define DEFAULT_LCD_CONTRAST 250
|
|
#define CONVERT_TO_EXT_ASCII // Use extended 128-255 symbols from ASCII table.
|
|
// At this time present conversion only for cyrillic - bg, ru and uk languages.
|
|
// First 7 ASCII symbols in panel font must be replaced with Marlin's special symbols.
|
|
|
|
#elif ENABLED(CR10_STOCKDISPLAY)
|
|
|
|
#define IS_RRD_FG_SC 1
|
|
#define BOARD_ST7920_DELAY_1 DELAY_NS(125)
|
|
#define BOARD_ST7920_DELAY_2 DELAY_NS(125)
|
|
#define BOARD_ST7920_DELAY_3 DELAY_NS(125)
|
|
|
|
#elif ANY(REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER, ANET_FULL_GRAPHICS_LCD, ANET_FULL_GRAPHICS_LCD_ALT_WIRING, BQ_LCD_SMART_CONTROLLER)
|
|
|
|
#define IS_RRD_FG_SC 1
|
|
|
|
#elif ENABLED(REPRAP_DISCOUNT_SMART_CONTROLLER)
|
|
|
|
// RepRapDiscount LCD or Graphical LCD with rotary click encoder
|
|
#define IS_RRD_SC 1
|
|
|
|
#endif
|
|
|
|
// ST7920-based graphical displays
|
|
#if ANY(IS_RRD_FG_SC, LCD_FOR_MELZI, SILVER_GATE_GLCD_CONTROLLER)
|
|
#define DOGLCD
|
|
#define U8GLIB_ST7920
|
|
#define IS_RRD_SC 1
|
|
#endif
|
|
|
|
// ST7565 / 64128N graphical displays
|
|
#if EITHER(MAKRPANEL, MINIPANEL)
|
|
#define IS_ULTIPANEL 1
|
|
#define DOGLCD
|
|
#if ENABLED(MAKRPANEL)
|
|
#define U8GLIB_ST7565_64128N
|
|
#endif
|
|
#endif
|
|
|
|
#if ENABLED(IS_U8GLIB_SSD1306)
|
|
#define U8GLIB_SSD1306
|
|
#endif
|
|
|
|
#if ENABLED(OVERLORD_OLED)
|
|
#define IS_ULTIPANEL 1
|
|
#define U8GLIB_SH1106
|
|
/**
|
|
* PCA9632 for buzzer and LEDs via i2c
|
|
* No auto-inc, red and green leds switched, buzzer
|
|
*/
|
|
#define PCA9632
|
|
#define PCA9632_NO_AUTO_INC
|
|
#define PCA9632_GRN 0x00
|
|
#define PCA9632_RED 0x02
|
|
#define PCA9632_BUZZER
|
|
#define PCA9632_BUZZER_DATA { 0x09, 0x02 }
|
|
|
|
#define ENCODER_PULSES_PER_STEP 1 // Overlord uses buttons
|
|
#define ENCODER_STEPS_PER_MENU_ITEM 1
|
|
#endif
|
|
|
|
// 128x64 I2C OLED LCDs - SSD1306/SSD1309/SH1106
|
|
#if ANY(U8GLIB_SSD1306, U8GLIB_SSD1309, U8GLIB_SH1106)
|
|
#define HAS_U8GLIB_I2C_OLED 1
|
|
#define IS_ULTRA_LCD 1
|
|
#define DOGLCD
|
|
#endif
|
|
|
|
/**
|
|
* SPI Ultipanels
|
|
*/
|
|
|
|
// Basic Ultipanel-like displays
|
|
#if ANY(ULTIMAKERCONTROLLER, IS_RRD_SC, G3D_PANEL, RIGIDBOT_PANEL, PANEL_ONE, U8GLIB_SH1106)
|
|
#define IS_ULTIPANEL 1
|
|
#endif
|
|
|
|
// Einstart OLED has Cardinal nav via pins defined in pins_EINSTART-S.h
|
|
#if ENABLED(U8GLIB_SH1106_EINSTART)
|
|
#define DOGLCD
|
|
#define IS_ULTIPANEL 1
|
|
#endif
|
|
|
|
// TFT Compatibility
|
|
#if ANY(FSMC_GRAPHICAL_TFT, SPI_GRAPHICAL_TFT, TFT_320x240, TFT_480x320, TFT_320x240_SPI, TFT_480x320_SPI, TFT_LVGL_UI_FSMC, TFT_LVGL_UI_SPI)
|
|
#define IS_LEGACY_TFT 1
|
|
#define TFT_GENERIC
|
|
#warning "Don't forget to update your TFT settings in Configuration.h."
|
|
#endif
|
|
|
|
#if ANY(FSMC_GRAPHICAL_TFT, TFT_320x240, TFT_480x320, TFT_LVGL_UI_FSMC)
|
|
#define TFT_INTERFACE_FSMC
|
|
#elif ANY(SPI_GRAPHICAL_TFT, TFT_320x240_SPI, TFT_480x320_SPI, TFT_LVGL_UI_SPI)
|
|
#define TFT_INTERFACE_SPI
|
|
#endif
|
|
|
|
#if EITHER(FSMC_GRAPHICAL_TFT, SPI_GRAPHICAL_TFT)
|
|
#define TFT_CLASSIC_UI
|
|
#elif ANY(TFT_320x240, TFT_480x320, TFT_320x240_SPI, TFT_480x320_SPI)
|
|
#define TFT_COLOR_UI
|
|
#elif EITHER(TFT_LVGL_UI_FSMC, TFT_LVGL_UI_SPI)
|
|
#define TFT_LVGL_UI
|
|
#endif
|
|
|
|
// FSMC/SPI TFT Panels (LVGL)
|
|
#if ENABLED(TFT_LVGL_UI)
|
|
#define HAS_TFT_LVGL_UI 1
|
|
#endif
|
|
|
|
// FSMC/SPI TFT Panels
|
|
#if ENABLED(TFT_CLASSIC_UI)
|
|
#define TFT_SCALED_DOGLCD 1
|
|
#endif
|
|
|
|
#if TFT_SCALED_DOGLCD
|
|
#define DOGLCD
|
|
#define IS_ULTIPANEL 1
|
|
#define DELAYED_BACKLIGHT_INIT
|
|
#elif HAS_TFT_LVGL_UI
|
|
#define DELAYED_BACKLIGHT_INIT
|
|
#endif
|
|
|
|
// Color UI
|
|
#if ENABLED(TFT_COLOR_UI)
|
|
#define HAS_GRAPHICAL_TFT 1
|
|
#define IS_ULTIPANEL 1
|
|
#endif
|
|
|
|
/**
|
|
* I2C Panels
|
|
*/
|
|
|
|
#if EITHER(LCD_SAINSMART_I2C_1602, LCD_SAINSMART_I2C_2004)
|
|
|
|
#define LCD_I2C_TYPE_PCF8575
|
|
#define LCD_I2C_ADDRESS 0x27 // I2C Address of the port expander
|
|
|
|
#if ENABLED(LCD_SAINSMART_I2C_2004)
|
|
#define LCD_WIDTH 20
|
|
#define LCD_HEIGHT 4
|
|
#endif
|
|
|
|
#elif ENABLED(LCD_I2C_PANELOLU2)
|
|
|
|
// PANELOLU2 LCD with status LEDs, separate encoder and click inputs
|
|
|
|
#define LCD_I2C_TYPE_MCP23017
|
|
#define LCD_I2C_ADDRESS 0x20 // I2C Address of the port expander
|
|
#define LCD_USE_I2C_BUZZER // Enable buzzer on LCD (optional)
|
|
#define IS_ULTIPANEL 1
|
|
|
|
#elif ENABLED(LCD_I2C_VIKI)
|
|
|
|
/**
|
|
* Panucatt VIKI LCD with status LEDs, integrated click & L/R/U/P buttons, separate encoder inputs
|
|
*
|
|
* This uses the LiquidTWI2 library v1.2.3 or later ( https://github.com/lincomatic/LiquidTWI2 )
|
|
* Make sure the LiquidTWI2 directory is placed in the Arduino or Sketchbook libraries subdirectory.
|
|
* Note: The pause/stop/resume LCD button pin should be connected to the Arduino
|
|
* BTN_ENC pin (or set BTN_ENC to -1 if not used)
|
|
*/
|
|
#define LCD_I2C_TYPE_MCP23017
|
|
#define LCD_I2C_ADDRESS 0x20 // I2C Address of the port expander
|
|
#define LCD_USE_I2C_BUZZER // Enable buzzer on LCD (requires LiquidTWI2 v1.2.3 or later)
|
|
#define IS_ULTIPANEL 1
|
|
|
|
#define ENCODER_FEEDRATE_DEADZONE 4
|
|
|
|
#define STD_ENCODER_PULSES_PER_STEP 1
|
|
#define STD_ENCODER_STEPS_PER_MENU_ITEM 2
|
|
|
|
#elif ENABLED(G3D_PANEL)
|
|
|
|
#define STD_ENCODER_PULSES_PER_STEP 2
|
|
#define STD_ENCODER_STEPS_PER_MENU_ITEM 1
|
|
|
|
#elif ANY(IS_RRD_SC, miniVIKI, VIKI2, ELB_FULL_GRAPHIC_CONTROLLER, AZSMZ_12864, OLED_PANEL_TINYBOY2, BQ_LCD_SMART_CONTROLLER, LCD_I2C_PANELOLU2)
|
|
|
|
#define STD_ENCODER_PULSES_PER_STEP 4
|
|
#define STD_ENCODER_STEPS_PER_MENU_ITEM 1
|
|
|
|
#endif
|
|
|
|
#ifndef STD_ENCODER_PULSES_PER_STEP
|
|
#if ENABLED(TOUCH_SCREEN)
|
|
#define STD_ENCODER_PULSES_PER_STEP 2
|
|
#else
|
|
#define STD_ENCODER_PULSES_PER_STEP 5
|
|
#endif
|
|
#endif
|
|
#ifndef STD_ENCODER_STEPS_PER_MENU_ITEM
|
|
#define STD_ENCODER_STEPS_PER_MENU_ITEM 1
|
|
#endif
|
|
#ifndef ENCODER_PULSES_PER_STEP
|
|
#define ENCODER_PULSES_PER_STEP STD_ENCODER_PULSES_PER_STEP
|
|
#endif
|
|
#ifndef ENCODER_STEPS_PER_MENU_ITEM
|
|
#define ENCODER_STEPS_PER_MENU_ITEM STD_ENCODER_STEPS_PER_MENU_ITEM
|
|
#endif
|
|
#ifndef ENCODER_FEEDRATE_DEADZONE
|
|
#define ENCODER_FEEDRATE_DEADZONE 6
|
|
#endif
|
|
|
|
// Shift register panels
|
|
// ---------------------
|
|
// 2 wire Non-latching LCD SR from:
|
|
// https://bitbucket.org/fmalpartida/new-liquidcrystal/wiki/schematics#!shiftregister-connection
|
|
#if ENABLED(FF_INTERFACEBOARD)
|
|
#define SR_LCD_3W_NL // Non latching 3 wire shift register
|
|
#define IS_ULTIPANEL 1
|
|
#elif ENABLED(SAV_3DLCD)
|
|
#define SR_LCD_2W_NL // Non latching 2 wire shift register
|
|
#define IS_ULTIPANEL 1
|
|
#elif ENABLED(ULTIPANEL)
|
|
#define IS_ULTIPANEL 1
|
|
#endif
|
|
|
|
#if EITHER(IS_ULTIPANEL, ULTRA_LCD)
|
|
#define IS_ULTRA_LCD 1
|
|
#endif
|
|
|
|
#if EITHER(IS_ULTIPANEL, REPRAPWORLD_KEYPAD)
|
|
#define IS_NEWPANEL 1
|
|
#endif
|
|
|
|
#if EITHER(ZONESTAR_LCD, REPRAPWORLD_KEYPAD)
|
|
#define IS_RRW_KEYPAD 1
|
|
#ifndef REPRAPWORLD_KEYPAD_MOVE_STEP
|
|
#define REPRAPWORLD_KEYPAD_MOVE_STEP 1.0
|
|
#endif
|
|
#endif
|
|
|
|
// Aliases for LCD features
|
|
#if ANY(DGUS_LCD_UI_ORIGIN, DGUS_LCD_UI_FYSETC, DGUS_LCD_UI_HIPRECY)
|
|
#define HAS_DGUS_LCD 1
|
|
#endif
|
|
|
|
// Extensible UI serial touch screens. (See src/lcd/extui)
|
|
#if ANY(HAS_DGUS_LCD, MALYAN_LCD, TOUCH_UI_FTDI_EVE, ANYCUBIC_LCD_I3MEGA, ANYCUBIC_LCD_CHIRON)
|
|
#define IS_EXTUI 1
|
|
#define EXTENSIBLE_UI
|
|
#endif
|
|
|
|
// Aliases for LCD features
|
|
#if EITHER(IS_ULTRA_LCD, EXTENSIBLE_UI)
|
|
#define HAS_DISPLAY 1
|
|
#endif
|
|
|
|
#if IS_ULTRA_LCD
|
|
#define HAS_WIRED_LCD 1
|
|
#if ENABLED(DOGLCD)
|
|
#define HAS_MARLINUI_U8GLIB 1
|
|
#elif IS_TFTGLCD_PANEL
|
|
// Neither DOGM nor HD44780. Fully customized interface.
|
|
#elif DISABLED(HAS_GRAPHICAL_TFT)
|
|
#define HAS_MARLINUI_HD44780 1
|
|
#endif
|
|
#endif
|
|
|
|
#if EITHER(HAS_DISPLAY, GLOBAL_STATUS_MESSAGE)
|
|
#define HAS_STATUS_MESSAGE 1
|
|
#endif
|
|
|
|
#if IS_ULTIPANEL && DISABLED(NO_LCD_MENUS)
|
|
#define HAS_LCD_MENU 1
|
|
#endif
|
|
|
|
#if HAS_MARLINUI_U8GLIB
|
|
#ifndef LCD_PIXEL_WIDTH
|
|
#define LCD_PIXEL_WIDTH 128
|
|
#endif
|
|
#ifndef LCD_PIXEL_HEIGHT
|
|
#define LCD_PIXEL_HEIGHT 64
|
|
#endif
|
|
#endif
|
|
|
|
/**
|
|
* Multi-Material-Unit supported models
|
|
*/
|
|
#define PRUSA_MMU1 1
|
|
#define PRUSA_MMU2 2
|
|
#define PRUSA_MMU2S 3
|
|
#define SMUFF_EMU_MMU2 12
|
|
#define SMUFF_EMU_MMU2S 13
|
|
|
|
#ifdef MMU_MODEL
|
|
#define HAS_MMU 1
|
|
#if MMU_MODEL == PRUSA_MMU1
|
|
#define HAS_PRUSA_MMU1 1
|
|
#elif MMU_MODEL % 10 == PRUSA_MMU2
|
|
#define HAS_PRUSA_MMU2 1
|
|
#elif MMU_MODEL % 10 == PRUSA_MMU2S
|
|
#define HAS_PRUSA_MMU2 1
|
|
#define HAS_PRUSA_MMU2S 1
|
|
#endif
|
|
#if MMU_MODEL >= SMUFF_EMU_MMU2
|
|
#define HAS_SMUFF 1
|
|
#endif
|
|
#endif
|
|
|
|
#undef PRUSA_MMU1
|
|
#undef PRUSA_MMU2
|
|
#undef PRUSA_MMU2S
|
|
#undef SMUFF_EMU_MMU2
|
|
#undef SMUFF_EMU_MMU2S
|
|
|
|
/**
|
|
* Extruders have some combination of stepper motors and hotends
|
|
* so we separate these concepts into the defines:
|
|
*
|
|
* EXTRUDERS - Number of Selectable Tools
|
|
* HOTENDS - Number of hotends, whether connected or separate
|
|
* E_STEPPERS - Number of actual E stepper motors
|
|
* E_MANUAL - Number of E steppers for LCD move options
|
|
*/
|
|
|
|
#if EXTRUDERS == 0
|
|
#undef EXTRUDERS
|
|
#define EXTRUDERS 0
|
|
#undef SINGLENOZZLE
|
|
#undef SWITCHING_EXTRUDER
|
|
#undef SWITCHING_NOZZLE
|
|
#undef MIXING_EXTRUDER
|
|
#undef HOTEND_IDLE_TIMEOUT
|
|
#elif EXTRUDERS > 1
|
|
#define HAS_MULTI_EXTRUDER 1
|
|
#endif
|
|
|
|
#if ENABLED(SWITCHING_EXTRUDER) // One stepper for every two EXTRUDERS
|
|
#if EXTRUDERS > 4
|
|
#define E_STEPPERS 3
|
|
#elif EXTRUDERS > 2
|
|
#define E_STEPPERS 2
|
|
#else
|
|
#define E_STEPPERS 1
|
|
#endif
|
|
#if DISABLED(SWITCHING_NOZZLE)
|
|
#define HOTENDS E_STEPPERS
|
|
#endif
|
|
#elif ENABLED(MIXING_EXTRUDER)
|
|
#define E_STEPPERS MIXING_STEPPERS
|
|
#define E_MANUAL 1
|
|
#if MIXING_STEPPERS == 2
|
|
#define HAS_DUAL_MIXING 1
|
|
#endif
|
|
#elif ENABLED(SWITCHING_TOOLHEAD)
|
|
#define E_STEPPERS EXTRUDERS
|
|
#define E_MANUAL EXTRUDERS
|
|
#elif HAS_PRUSA_MMU2
|
|
#define E_STEPPERS 1
|
|
#endif
|
|
|
|
// No inactive extruders with SWITCHING_NOZZLE or Průša MMU1
|
|
#if ENABLED(SWITCHING_NOZZLE) || HAS_PRUSA_MMU1
|
|
#undef DISABLE_INACTIVE_EXTRUDER
|
|
#endif
|
|
|
|
// Průša MMU1, MMU 2.0, MMUS 2.0 and SMUFF force SINGLENOZZLE
|
|
#if HAS_MMU
|
|
#define SINGLENOZZLE
|
|
#endif
|
|
|
|
#if EITHER(SINGLENOZZLE, MIXING_EXTRUDER) // One hotend, one thermistor, no XY offset
|
|
#undef HOTENDS
|
|
#define HOTENDS 1
|
|
#undef HOTEND_OFFSET_X
|
|
#undef HOTEND_OFFSET_Y
|
|
#endif
|
|
|
|
#ifndef HOTENDS
|
|
#define HOTENDS EXTRUDERS
|
|
#endif
|
|
#ifndef E_STEPPERS
|
|
#define E_STEPPERS EXTRUDERS
|
|
#endif
|
|
#ifndef E_MANUAL
|
|
#define E_MANUAL EXTRUDERS
|
|
#endif
|
|
|
|
#if HOTENDS
|
|
#define HAS_HOTEND 1
|
|
#ifndef HOTEND_OVERSHOOT
|
|
#define HOTEND_OVERSHOOT 15
|
|
#endif
|
|
#if HOTENDS > 1
|
|
#define HAS_MULTI_HOTEND 1
|
|
#define HAS_HOTEND_OFFSET 1
|
|
#endif
|
|
#else
|
|
#undef PID_PARAMS_PER_HOTEND
|
|
#endif
|
|
|
|
// Helper macros for extruder and hotend arrays
|
|
#define HOTEND_LOOP() for (int8_t e = 0; e < HOTENDS; e++)
|
|
#define ARRAY_BY_EXTRUDERS(V...) ARRAY_N(EXTRUDERS, V)
|
|
#define ARRAY_BY_EXTRUDERS1(v1) ARRAY_BY_EXTRUDERS(v1, v1, v1, v1, v1, v1, v1, v1)
|
|
#define ARRAY_BY_HOTENDS(V...) ARRAY_N(HOTENDS, V)
|
|
#define ARRAY_BY_HOTENDS1(v1) ARRAY_BY_HOTENDS(v1, v1, v1, v1, v1, v1, v1, v1)
|
|
|
|
#if ENABLED(SWITCHING_EXTRUDER) && (DISABLED(SWITCHING_NOZZLE) || SWITCHING_EXTRUDER_SERVO_NR != SWITCHING_NOZZLE_SERVO_NR)
|
|
#define DO_SWITCH_EXTRUDER 1
|
|
#endif
|
|
|
|
/**
|
|
* Default hotend offsets, if not defined
|
|
*/
|
|
#if HAS_HOTEND_OFFSET
|
|
#ifndef HOTEND_OFFSET_X
|
|
#define HOTEND_OFFSET_X { 0 } // X offsets for each extruder
|
|
#endif
|
|
#ifndef HOTEND_OFFSET_Y
|
|
#define HOTEND_OFFSET_Y { 0 } // Y offsets for each extruder
|
|
#endif
|
|
#ifndef HOTEND_OFFSET_Z
|
|
#define HOTEND_OFFSET_Z { 0 } // Z offsets for each extruder
|
|
#endif
|
|
#endif
|
|
|
|
/**
|
|
* DISTINCT_E_FACTORS affects how some E factors are accessed
|
|
*/
|
|
#if ENABLED(DISTINCT_E_FACTORS) && E_STEPPERS > 1
|
|
#define DISTINCT_E E_STEPPERS
|
|
#define XYZE_N (XYZ + E_STEPPERS)
|
|
#define E_INDEX_N(E) (E)
|
|
#define E_AXIS_N(E) AxisEnum(E_AXIS + E)
|
|
#define UNUSED_E(E) NOOP
|
|
#else
|
|
#undef DISTINCT_E_FACTORS
|
|
#define DISTINCT_E 1
|
|
#define XYZE_N XYZE
|
|
#define E_INDEX_N(E) 0
|
|
#define E_AXIS_N(E) E_AXIS
|
|
#define UNUSED_E(E) UNUSED(E)
|
|
#endif
|
|
|
|
#if ENABLED(DWIN_CREALITY_LCD)
|
|
#define SERIAL_CATCHALL 0
|
|
#ifndef LCD_SERIAL_PORT
|
|
#define LCD_SERIAL_PORT 3 // Creality 4.x board
|
|
#endif
|
|
#endif
|
|
|
|
/**
|
|
* The BLTouch Probe emulates a servo probe
|
|
* and uses "special" angles for its state.
|
|
*/
|
|
#if ENABLED(BLTOUCH)
|
|
#ifndef Z_PROBE_SERVO_NR
|
|
#define Z_PROBE_SERVO_NR 0
|
|
#endif
|
|
#undef DEACTIVATE_SERVOS_AFTER_MOVE
|
|
|
|
// Always disable probe pin inverting for BLTouch
|
|
#undef Z_MIN_PROBE_ENDSTOP_INVERTING
|
|
#define Z_MIN_PROBE_ENDSTOP_INVERTING false
|
|
#if ENABLED(Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN)
|
|
#undef Z_MIN_ENDSTOP_INVERTING
|
|
#define Z_MIN_ENDSTOP_INVERTING false
|
|
#endif
|
|
#endif
|
|
|
|
/**
|
|
* Set a flag for a servo probe (or BLTouch)
|
|
*/
|
|
#ifdef Z_PROBE_SERVO_NR
|
|
#define HAS_Z_SERVO_PROBE 1
|
|
#endif
|
|
#if ANY(HAS_Z_SERVO_PROBE, SWITCHING_EXTRUDER, SWITCHING_NOZZLE)
|
|
#define HAS_SERVO_ANGLES 1
|
|
#endif
|
|
#if !HAS_SERVO_ANGLES
|
|
#undef EDITABLE_SERVO_ANGLES
|
|
#endif
|
|
|
|
/**
|
|
* Set flags for enabled probes
|
|
*/
|
|
#if ANY(HAS_Z_SERVO_PROBE, FIX_MOUNTED_PROBE, NOZZLE_AS_PROBE, TOUCH_MI_PROBE, Z_PROBE_ALLEN_KEY, Z_PROBE_SLED, SOLENOID_PROBE, SENSORLESS_PROBING, RACK_AND_PINION_PROBE)
|
|
#define HAS_BED_PROBE 1
|
|
#endif
|
|
|
|
#if ENABLED(FILAMENT_RUNOUT_SENSOR)
|
|
#if NUM_RUNOUT_SENSORS >= 1
|
|
#ifndef FIL_RUNOUT1_STATE
|
|
#define FIL_RUNOUT1_STATE FIL_RUNOUT_STATE
|
|
#endif
|
|
#ifndef FIL_RUNOUT1_PULLUP
|
|
#define FIL_RUNOUT1_PULLUP FIL_RUNOUT_PULLUP
|
|
#endif
|
|
#ifndef FIL_RUNOUT1_PULLDOWN
|
|
#define FIL_RUNOUT1_PULLDOWN FIL_RUNOUT_PULLDOWN
|
|
#endif
|
|
#endif
|
|
#if NUM_RUNOUT_SENSORS >= 2
|
|
#ifndef FIL_RUNOUT2_STATE
|
|
#define FIL_RUNOUT2_STATE FIL_RUNOUT_STATE
|
|
#endif
|
|
#ifndef FIL_RUNOUT2_PULLUP
|
|
#define FIL_RUNOUT2_PULLUP FIL_RUNOUT_PULLUP
|
|
#endif
|
|
#ifndef FIL_RUNOUT2_PULLDOWN
|
|
#define FIL_RUNOUT2_PULLDOWN FIL_RUNOUT_PULLDOWN
|
|
#endif
|
|
#endif
|
|
#if NUM_RUNOUT_SENSORS >= 3
|
|
#ifndef FIL_RUNOUT3_STATE
|
|
#define FIL_RUNOUT3_STATE FIL_RUNOUT_STATE
|
|
#endif
|
|
#ifndef FIL_RUNOUT3_PULLUP
|
|
#define FIL_RUNOUT3_PULLUP FIL_RUNOUT_PULLUP
|
|
#endif
|
|
#ifndef FIL_RUNOUT3_PULLDOWN
|
|
#define FIL_RUNOUT3_PULLDOWN FIL_RUNOUT_PULLDOWN
|
|
#endif
|
|
#endif
|
|
#if NUM_RUNOUT_SENSORS >= 4
|
|
#ifndef FIL_RUNOUT4_STATE
|
|
#define FIL_RUNOUT4_STATE FIL_RUNOUT_STATE
|
|
#endif
|
|
#ifndef FIL_RUNOUT4_PULLUP
|
|
#define FIL_RUNOUT4_PULLUP FIL_RUNOUT_PULLUP
|
|
#endif
|
|
#ifndef FIL_RUNOUT4_PULLDOWN
|
|
#define FIL_RUNOUT4_PULLDOWN FIL_RUNOUT_PULLDOWN
|
|
#endif
|
|
#endif
|
|
#if NUM_RUNOUT_SENSORS >= 5
|
|
#ifndef FIL_RUNOUT5_STATE
|
|
#define FIL_RUNOUT5_STATE FIL_RUNOUT_STATE
|
|
#endif
|
|
#ifndef FIL_RUNOUT5_PULLUP
|
|
#define FIL_RUNOUT5_PULLUP FIL_RUNOUT_PULLUP
|
|
#endif
|
|
#ifndef FIL_RUNOUT5_PULLDOWN
|
|
#define FIL_RUNOUT5_PULLDOWN FIL_RUNOUT_PULLDOWN
|
|
#endif
|
|
#endif
|
|
#if NUM_RUNOUT_SENSORS >= 6
|
|
#ifndef FIL_RUNOUT6_STATE
|
|
#define FIL_RUNOUT6_STATE FIL_RUNOUT_STATE
|
|
#endif
|
|
#ifndef FIL_RUNOUT6_PULLUP
|
|
#define FIL_RUNOUT6_PULLUP FIL_RUNOUT_PULLUP
|
|
#endif
|
|
#ifndef FIL_RUNOUT6_PULLDOWN
|
|
#define FIL_RUNOUT6_PULLDOWN FIL_RUNOUT_PULLDOWN
|
|
#endif
|
|
#endif
|
|
#if NUM_RUNOUT_SENSORS >= 7
|
|
#ifndef FIL_RUNOUT7_STATE
|
|
#define FIL_RUNOUT7_STATE FIL_RUNOUT_STATE
|
|
#endif
|
|
#ifndef FIL_RUNOUT7_PULLUP
|
|
#define FIL_RUNOUT7_PULLUP FIL_RUNOUT_PULLUP
|
|
#endif
|
|
#ifndef FIL_RUNOUT7_PULLDOWN
|
|
#define FIL_RUNOUT7_PULLDOWN FIL_RUNOUT_PULLDOWN
|
|
#endif
|
|
#endif
|
|
#if NUM_RUNOUT_SENSORS >= 8
|
|
#ifndef FIL_RUNOUT8_STATE
|
|
#define FIL_RUNOUT8_STATE FIL_RUNOUT_STATE
|
|
#endif
|
|
#ifndef FIL_RUNOUT8_PULLUP
|
|
#define FIL_RUNOUT8_PULLUP FIL_RUNOUT_PULLUP
|
|
#endif
|
|
#ifndef FIL_RUNOUT8_PULLDOWN
|
|
#define FIL_RUNOUT8_PULLDOWN FIL_RUNOUT_PULLDOWN
|
|
#endif
|
|
#endif
|
|
#endif // FILAMENT_RUNOUT_SENSOR
|
|
|
|
#if EITHER(MESH_BED_LEVELING, AUTO_BED_LEVELING_UBL)
|
|
#undef PROBE_MANUALLY
|
|
#endif
|
|
|
|
#if ANY(HAS_BED_PROBE, PROBE_MANUALLY, MESH_BED_LEVELING)
|
|
#define PROBE_SELECTED 1
|
|
#endif
|
|
|
|
#if HAS_BED_PROBE
|
|
#if DISABLED(NOZZLE_AS_PROBE)
|
|
#define HAS_PROBE_XY_OFFSET 1
|
|
#endif
|
|
#if DISABLED(Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN)
|
|
#define HAS_CUSTOM_PROBE_PIN 1
|
|
#endif
|
|
#if Z_HOME_DIR < 0 && (!HAS_CUSTOM_PROBE_PIN || ENABLED(USE_PROBE_FOR_Z_HOMING))
|
|
#define HOMING_Z_WITH_PROBE 1
|
|
#endif
|
|
#ifndef Z_PROBE_LOW_POINT
|
|
#define Z_PROBE_LOW_POINT -5
|
|
#endif
|
|
#if ENABLED(Z_PROBE_ALLEN_KEY)
|
|
#define PROBE_TRIGGERED_WHEN_STOWED_TEST 1 // Extra test for Allen Key Probe
|
|
#endif
|
|
#if MULTIPLE_PROBING > 1
|
|
#if EXTRA_PROBING > 0
|
|
#define TOTAL_PROBING (MULTIPLE_PROBING + EXTRA_PROBING)
|
|
#else
|
|
#define TOTAL_PROBING MULTIPLE_PROBING
|
|
#endif
|
|
#endif
|
|
#if ENABLED(PREHEAT_BEFORE_PROBING)
|
|
#ifndef PROBING_NOZZLE_TEMP
|
|
#define PROBING_NOZZLE_TEMP 0
|
|
#endif
|
|
#ifndef PROBING_BED_TEMP
|
|
#define PROBING_BED_TEMP 0
|
|
#endif
|
|
#endif
|
|
#if ENABLED(PREHEAT_BEFORE_LEVELING)
|
|
#ifndef LEVELING_NOZZLE_TEMP
|
|
#define LEVELING_NOZZLE_TEMP 0
|
|
#endif
|
|
#ifndef LEVELING_BED_TEMP
|
|
#define LEVELING_BED_TEMP 0
|
|
#endif
|
|
#endif
|
|
#else
|
|
// Clear probe pin settings when no probe is selected
|
|
#undef Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN
|
|
#undef USE_PROBE_FOR_Z_HOMING
|
|
#endif
|
|
|
|
#if Z_HOME_DIR > 0
|
|
#define HOME_Z_FIRST // If homing away from BED do Z first
|
|
#endif
|
|
|
|
/**
|
|
* Set granular options based on the specific type of leveling
|
|
*/
|
|
#if ENABLED(AUTO_BED_LEVELING_UBL)
|
|
#undef LCD_BED_LEVELING
|
|
#if ENABLED(DELTA)
|
|
#define UBL_SEGMENTED 1
|
|
#endif
|
|
#endif
|
|
#if EITHER(AUTO_BED_LEVELING_LINEAR, AUTO_BED_LEVELING_3POINT)
|
|
#define ABL_PLANAR 1
|
|
#endif
|
|
#if EITHER(AUTO_BED_LEVELING_LINEAR, AUTO_BED_LEVELING_BILINEAR)
|
|
#define ABL_GRID 1
|
|
#endif
|
|
#if ANY(AUTO_BED_LEVELING_LINEAR, AUTO_BED_LEVELING_BILINEAR, AUTO_BED_LEVELING_3POINT)
|
|
#define HAS_ABL_NOT_UBL 1
|
|
#endif
|
|
#if ANY(AUTO_BED_LEVELING_BILINEAR, AUTO_BED_LEVELING_UBL, MESH_BED_LEVELING)
|
|
#define HAS_MESH 1
|
|
#endif
|
|
#if EITHER(AUTO_BED_LEVELING_UBL, AUTO_BED_LEVELING_3POINT)
|
|
#define NEEDS_THREE_PROBE_POINTS 1
|
|
#endif
|
|
#if EITHER(HAS_ABL_NOT_UBL, AUTO_BED_LEVELING_UBL)
|
|
#define HAS_ABL_OR_UBL 1
|
|
#if DISABLED(PROBE_MANUALLY)
|
|
#define HAS_AUTOLEVEL 1
|
|
#endif
|
|
#endif
|
|
#if EITHER(HAS_ABL_OR_UBL, MESH_BED_LEVELING)
|
|
#define HAS_LEVELING 1
|
|
#if DISABLED(AUTO_BED_LEVELING_UBL)
|
|
#define PLANNER_LEVELING 1
|
|
#endif
|
|
#endif
|
|
#if EITHER(HAS_ABL_OR_UBL, Z_MIN_PROBE_REPEATABILITY_TEST)
|
|
#define HAS_PROBING_PROCEDURE 1
|
|
#endif
|
|
#if !HAS_LEVELING
|
|
#undef PROBE_MANUALLY
|
|
#undef RESTORE_LEVELING_AFTER_G28
|
|
#undef ENABLE_LEVELING_AFTER_G28
|
|
#endif
|
|
|
|
#ifdef GRID_MAX_POINTS_X
|
|
#define GRID_MAX_POINTS ((GRID_MAX_POINTS_X) * (GRID_MAX_POINTS_Y))
|
|
#define GRID_LOOP(A,B) LOOP_L_N(A, GRID_MAX_POINTS_X) LOOP_L_N(B, GRID_MAX_POINTS_Y)
|
|
#endif
|
|
|
|
// Slim menu optimizations
|
|
#if ENABLED(SLIM_LCD_MENUS)
|
|
#define BOOT_MARLIN_LOGO_SMALL
|
|
#endif
|
|
|
|
/**
|
|
* CoreXY, CoreXZ, and CoreYZ - and their reverse
|
|
*/
|
|
#if EITHER(COREXY, COREYX)
|
|
#define CORE_IS_XY 1
|
|
#endif
|
|
#if EITHER(COREXZ, COREZX)
|
|
#define CORE_IS_XZ 1
|
|
#endif
|
|
#if EITHER(COREYZ, COREZY)
|
|
#define CORE_IS_YZ 1
|
|
#endif
|
|
#if CORE_IS_XY || CORE_IS_XZ || CORE_IS_YZ
|
|
#define IS_CORE 1
|
|
#endif
|
|
#if IS_CORE
|
|
#if CORE_IS_XY
|
|
#define CORE_AXIS_1 A_AXIS
|
|
#define CORE_AXIS_2 B_AXIS
|
|
#define NORMAL_AXIS Z_AXIS
|
|
#elif CORE_IS_XZ
|
|
#define CORE_AXIS_1 A_AXIS
|
|
#define NORMAL_AXIS Y_AXIS
|
|
#define CORE_AXIS_2 C_AXIS
|
|
#elif CORE_IS_YZ
|
|
#define NORMAL_AXIS X_AXIS
|
|
#define CORE_AXIS_1 B_AXIS
|
|
#define CORE_AXIS_2 C_AXIS
|
|
#endif
|
|
#define CORESIGN(n) (ANY(COREYX, COREZX, COREZY) ? (-(n)) : (n))
|
|
#elif ENABLED(MARKFORGED_XY)
|
|
// Markforged kinematics
|
|
#define CORE_AXIS_1 A_AXIS
|
|
#define CORE_AXIS_2 B_AXIS
|
|
#define NORMAL_AXIS Z_AXIS
|
|
#endif
|
|
|
|
#if ENABLED(MORGAN_SCARA)
|
|
#define IS_SCARA 1
|
|
#define IS_KINEMATIC 1
|
|
#elif ENABLED(DELTA)
|
|
#define IS_KINEMATIC 1
|
|
#else
|
|
#define IS_CARTESIAN 1
|
|
#if !IS_CORE
|
|
#define IS_FULL_CARTESIAN 1
|
|
#endif
|
|
#endif
|
|
|
|
// This flag indicates some kind of jerk storage is needed
|
|
#if EITHER(CLASSIC_JERK, IS_KINEMATIC)
|
|
#define HAS_CLASSIC_JERK 1
|
|
#endif
|
|
|
|
#if DISABLED(CLASSIC_JERK)
|
|
#define HAS_JUNCTION_DEVIATION 1
|
|
#endif
|
|
|
|
// E jerk exists with JD disabled (of course) but also when Linear Advance is disabled on Delta/SCARA
|
|
#if ENABLED(CLASSIC_JERK) || (IS_KINEMATIC && DISABLED(LIN_ADVANCE))
|
|
#define HAS_CLASSIC_E_JERK 1
|
|
#endif
|
|
|
|
#if SERIAL_PORT == -1 || SERIAL_PORT_2 == -1
|
|
#define HAS_USB_SERIAL 1
|
|
#endif
|
|
#if SERIAL_PORT_2 == -2
|
|
#define HAS_ETHERNET 1
|
|
#endif
|
|
|
|
// Fallback Stepper Driver types that don't depend on Configuration_adv.h
|
|
#ifndef X_DRIVER_TYPE
|
|
#define X_DRIVER_TYPE A4988
|
|
#endif
|
|
#ifndef X2_DRIVER_TYPE
|
|
#define X2_DRIVER_TYPE A4988
|
|
#endif
|
|
#ifndef Y_DRIVER_TYPE
|
|
#define Y_DRIVER_TYPE A4988
|
|
#endif
|
|
#ifndef Y2_DRIVER_TYPE
|
|
#define Y2_DRIVER_TYPE A4988
|
|
#endif
|
|
#ifndef Z_DRIVER_TYPE
|
|
#define Z_DRIVER_TYPE A4988
|
|
#endif
|
|
#ifndef Z2_DRIVER_TYPE
|
|
#define Z2_DRIVER_TYPE A4988
|
|
#endif
|
|
#ifndef Z3_DRIVER_TYPE
|
|
#define Z3_DRIVER_TYPE A4988
|
|
#endif
|
|
#ifndef Z4_DRIVER_TYPE
|
|
#define Z4_DRIVER_TYPE A4988
|
|
#endif
|
|
#if E_STEPPERS <= 0
|
|
#undef E0_DRIVER_TYPE
|
|
#elif !defined(E0_DRIVER_TYPE)
|
|
#define E0_DRIVER_TYPE A4988
|
|
#endif
|
|
#if E_STEPPERS <= 1
|
|
#undef E1_DRIVER_TYPE
|
|
#elif !defined(E1_DRIVER_TYPE)
|
|
#define E1_DRIVER_TYPE A4988
|
|
#endif
|
|
#if E_STEPPERS <= 2
|
|
#undef E2_DRIVER_TYPE
|
|
#elif !defined(E2_DRIVER_TYPE)
|
|
#define E2_DRIVER_TYPE A4988
|
|
#endif
|
|
#if E_STEPPERS <= 3
|
|
#undef E3_DRIVER_TYPE
|
|
#elif !defined(E3_DRIVER_TYPE)
|
|
#define E3_DRIVER_TYPE A4988
|
|
#endif
|
|
#if E_STEPPERS <= 4
|
|
#undef E4_DRIVER_TYPE
|
|
#elif !defined(E4_DRIVER_TYPE)
|
|
#define E4_DRIVER_TYPE A4988
|
|
#endif
|
|
#if E_STEPPERS <= 5
|
|
#undef E5_DRIVER_TYPE
|
|
#elif !defined(E5_DRIVER_TYPE)
|
|
#define E5_DRIVER_TYPE A4988
|
|
#endif
|
|
#if E_STEPPERS <= 6
|
|
#undef E6_DRIVER_TYPE
|
|
#elif !defined(E6_DRIVER_TYPE)
|
|
#define E6_DRIVER_TYPE A4988
|
|
#endif
|
|
#if E_STEPPERS <= 7
|
|
#undef E7_DRIVER_TYPE
|
|
#elif !defined(E7_DRIVER_TYPE)
|
|
#define E7_DRIVER_TYPE A4988
|
|
#endif
|
|
|
|
// Fallback axis inverting
|
|
#ifndef INVERT_X_DIR
|
|
#define INVERT_X_DIR false
|
|
#endif
|
|
#ifndef INVERT_Y_DIR
|
|
#define INVERT_Y_DIR false
|
|
#endif
|
|
#ifndef INVERT_Z_DIR
|
|
#define INVERT_Z_DIR false
|
|
#endif
|
|
#ifndef INVERT_E_DIR
|
|
#define INVERT_E_DIR false
|
|
#endif
|
|
|
|
/**
|
|
* This setting is also used by M109 when trying to calculate
|
|
* a ballpark safe margin to prevent wait-forever situation.
|
|
*/
|
|
#ifndef EXTRUDE_MINTEMP
|
|
#define EXTRUDE_MINTEMP 170
|
|
#endif
|
|
|
|
/**
|
|
* TFT Displays
|
|
*
|
|
* Configure parameters for TFT displays:
|
|
* - TFT_DEFAULT_ORIENTATION
|
|
* - TFT_DRIVER
|
|
* - TFT_WIDTH
|
|
* - TFT_HEIGHT
|
|
* - TFT_INTERFACE_(SPI|FSMC)
|
|
* - TFT_COLOR
|
|
* - GRAPHICAL_TFT_UPSCALE
|
|
*/
|
|
#if ENABLED(MKS_TS35_V2_0) // Most common: ST7796
|
|
#define TFT_DEFAULT_ORIENTATION (TFT_EXCHANGE_XY)
|
|
#define TFT_RES_480x320
|
|
#define TFT_INTERFACE_SPI
|
|
#elif ENABLED(MKS_ROBIN_TFT24) // Most common: ST7789
|
|
#define TFT_DEFAULT_ORIENTATION (TFT_EXCHANGE_XY | TFT_INVERT_Y)
|
|
#define TFT_RES_320x240
|
|
#define TFT_INTERFACE_FSMC
|
|
#elif ENABLED(MKS_ROBIN_TFT28) // Most common: ST7789
|
|
#define TFT_DEFAULT_ORIENTATION (TFT_EXCHANGE_XY | TFT_INVERT_Y)
|
|
#define TFT_RES_320x240
|
|
#define TFT_INTERFACE_FSMC
|
|
#elif ENABLED(MKS_ROBIN_TFT32) // Most common: ST7789
|
|
#define TFT_DEFAULT_ORIENTATION (TFT_EXCHANGE_XY | TFT_INVERT_Y)
|
|
#define TFT_RES_320x240
|
|
#define TFT_INTERFACE_FSMC
|
|
#elif ENABLED(MKS_ROBIN_TFT35) // Most common: ILI9488
|
|
#define TFT_DEFAULT_ORIENTATION (TFT_EXCHANGE_XY | TFT_INVERT_X | TFT_INVERT_Y)
|
|
#define TFT_RES_480x320
|
|
#define TFT_INTERFACE_FSMC
|
|
#elif ENABLED(MKS_ROBIN_TFT43)
|
|
#define TFT_DEFAULT_ORIENTATION 0
|
|
#define TFT_DRIVER SSD1963
|
|
#define TFT_RES_480x272
|
|
#define TFT_INTERFACE_FSMC
|
|
#elif ENABLED(MKS_ROBIN_TFT_V1_1R) // ILI9328 or R61505
|
|
#define TFT_DEFAULT_ORIENTATION (TFT_EXCHANGE_XY | TFT_INVERT_X | TFT_INVERT_Y)
|
|
#define TFT_RES_320x240
|
|
#define TFT_INTERFACE_FSMC
|
|
#elif EITHER(TFT_TRONXY_X5SA, ANYCUBIC_TFT35) // ILI9488
|
|
#define TFT_DEFAULT_ORIENTATION (TFT_EXCHANGE_XY | TFT_INVERT_X | TFT_INVERT_Y)
|
|
#define TFT_DRIVER ILI9488
|
|
#define TFT_RES_480x320
|
|
#define TFT_INTERFACE_FSMC
|
|
#elif ENABLED(LONGER_LK_TFT28)
|
|
#define TFT_DEFAULT_ORIENTATION (TFT_EXCHANGE_XY | TFT_INVERT_X | TFT_INVERT_Y)
|
|
#define TFT_RES_320x240
|
|
#define TFT_INTERFACE_FSMC
|
|
#elif ENABLED(ANET_ET4_TFT28) // ST7789
|
|
#define TFT_DEFAULT_ORIENTATION (TFT_EXCHANGE_XY | TFT_INVERT_Y)
|
|
#define TFT_RES_320x240
|
|
#define TFT_INTERFACE_FSMC
|
|
#elif ENABLED(ANET_ET5_TFT35) // ST7796
|
|
#define TFT_DEFAULT_ORIENTATION (TFT_EXCHANGE_XY)
|
|
#define TFT_RES_480x320
|
|
#define TFT_INTERFACE_FSMC
|
|
#elif ENABLED(TFT_GENERIC)
|
|
#define TFT_DEFAULT_ORIENTATION (TFT_EXCHANGE_XY | TFT_INVERT_X | TFT_INVERT_Y)
|
|
#if NONE(TFT_RES_320x240, TFT_RES_480x272, TFT_RES_480x320)
|
|
#define TFT_RES_320x240
|
|
#endif
|
|
#if NONE(TFT_INTERFACE_FSMC, TFT_INTERFACE_SPI)
|
|
#define TFT_INTERFACE_SPI
|
|
#endif
|
|
#endif
|
|
|
|
#if ENABLED(TFT_RES_320x240)
|
|
#define TFT_WIDTH 320
|
|
#define TFT_HEIGHT 240
|
|
#define GRAPHICAL_TFT_UPSCALE 2
|
|
#elif ENABLED(TFT_RES_480x272)
|
|
#define TFT_WIDTH 480
|
|
#define TFT_HEIGHT 272
|
|
#define GRAPHICAL_TFT_UPSCALE 2
|
|
#elif ENABLED(TFT_RES_480x320)
|
|
#define TFT_WIDTH 480
|
|
#define TFT_HEIGHT 320
|
|
#define GRAPHICAL_TFT_UPSCALE 3
|
|
#endif
|
|
|
|
// FSMC/SPI TFT Panels using standard HAL/tft/tft_(fsmc|spi).h
|
|
#if ENABLED(TFT_INTERFACE_FSMC)
|
|
#define HAS_FSMC_TFT 1
|
|
#if TFT_SCALED_DOGLCD
|
|
#define HAS_FSMC_GRAPHICAL_TFT 1
|
|
#elif HAS_TFT_LVGL_UI
|
|
#define HAS_TFT_LVGL_UI_FSMC 1
|
|
#endif
|
|
#elif ENABLED(TFT_INTERFACE_SPI)
|
|
#define HAS_SPI_TFT 1
|
|
#if TFT_SCALED_DOGLCD
|
|
#define HAS_SPI_GRAPHICAL_TFT 1
|
|
#elif HAS_TFT_LVGL_UI
|
|
#define HAS_TFT_LVGL_UI_SPI 1
|
|
#endif
|
|
#endif
|
|
|
|
#if ENABLED(TFT_COLOR_UI)
|
|
#if TFT_HEIGHT == 240
|
|
#if ENABLED(TFT_INTERFACE_SPI)
|
|
#define TFT_320x240_SPI
|
|
#elif ENABLED(TFT_INTERFACE_FSMC)
|
|
#define TFT_320x240
|
|
#endif
|
|
#elif TFT_HEIGHT == 320
|
|
#if ENABLED(TFT_INTERFACE_SPI)
|
|
#define TFT_480x320_SPI
|
|
#elif ENABLED(TFT_INTERFACE_FSMC)
|
|
#define TFT_480x320
|
|
#endif
|
|
#elif TFT_HEIGHT == 272
|
|
#if ENABLED(TFT_INTERFACE_SPI)
|
|
#define TFT_480x272_SPI
|
|
#elif ENABLED(TFT_INTERFACE_FSMC)
|
|
#define TFT_480x272
|
|
#endif
|
|
#endif
|
|
#endif
|
|
|
|
#if EITHER(TFT_320x240, TFT_320x240_SPI)
|
|
#define HAS_UI_320x240 1
|
|
#elif EITHER(TFT_480x320, TFT_480x320_SPI)
|
|
#define HAS_UI_480x320 1
|
|
#elif EITHER(TFT_480x272, TFT_480x272_SPI)
|
|
#define HAS_UI_480x272 1
|
|
#endif
|
|
#if ANY(HAS_UI_320x240, HAS_UI_480x320, HAS_UI_480x272)
|
|
#define LCD_HEIGHT TERN(TOUCH_SCREEN, 6, 7) // Fewer lines with touch buttons onscreen
|
|
#endif
|
|
|
|
// This emulated DOGM has 'touch/xpt2046', not 'tft/xpt2046'
|
|
#if ENABLED(TOUCH_SCREEN) && !HAS_GRAPHICAL_TFT
|
|
#undef TOUCH_SCREEN
|
|
#if ENABLED(TFT_CLASSIC_UI)
|
|
#define HAS_TOUCH_BUTTONS 1
|
|
#endif
|
|
#endif
|
|
|
|
// XPT2046_** Compatibility
|
|
#if !(defined(TOUCH_CALIBRATION_X) || defined(TOUCH_CALIBRATION_Y) || defined(TOUCH_OFFSET_X) || defined(TOUCH_OFFSET_Y) || defined(TOUCH_ORIENTATION))
|
|
#if defined(XPT2046_X_CALIBRATION) && defined(XPT2046_Y_CALIBRATION) && defined(XPT2046_X_OFFSET) && defined(XPT2046_Y_OFFSET)
|
|
#define TOUCH_CALIBRATION_X XPT2046_X_CALIBRATION
|
|
#define TOUCH_CALIBRATION_Y XPT2046_Y_CALIBRATION
|
|
#define TOUCH_OFFSET_X XPT2046_X_OFFSET
|
|
#define TOUCH_OFFSET_Y XPT2046_Y_OFFSET
|
|
#define TOUCH_ORIENTATION TOUCH_LANDSCAPE
|
|
#endif
|
|
#endif
|