2016-07-26 03:07:15 +02:00
|
|
|
/**
|
|
|
|
* Marlin 3D Printer Firmware
|
2020-02-03 15:00:57 +01:00
|
|
|
* Copyright (c) 2020 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
2016-07-26 03:07:15 +02:00
|
|
|
*
|
|
|
|
* Based on Sprinter and grbl.
|
2019-06-28 06:57:50 +02:00
|
|
|
* Copyright (c) 2011 Camiel Gubbels / Erik van der Zalm
|
2016-07-26 03:07:15 +02:00
|
|
|
*
|
|
|
|
* 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
|
2020-07-23 05:20:14 +02:00
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2016-07-26 03:07:15 +02:00
|
|
|
*
|
|
|
|
*/
|
2018-11-03 08:13:10 +01:00
|
|
|
#pragma once
|
2016-07-26 03:07:15 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Conditionals_LCD.h
|
2016-08-22 22:02:19 +02:00
|
|
|
* Conditionals that need to be set before Configuration_adv.h or pins.h
|
2016-07-26 03:07:15 +02:00
|
|
|
*/
|
|
|
|
|
2020-09-07 04:40:58 +02:00
|
|
|
// Kinematics
|
2020-03-08 05:20:41 +01:00
|
|
|
#if ENABLED(MORGAN_SCARA)
|
|
|
|
#define IS_SCARA 1
|
|
|
|
#define IS_KINEMATIC 1
|
|
|
|
#elif ENABLED(DELTA)
|
|
|
|
#define IS_KINEMATIC 1
|
|
|
|
#else
|
|
|
|
#define IS_CARTESIAN 1
|
|
|
|
#endif
|
|
|
|
|
2020-09-07 04:40:58 +02:00
|
|
|
// MKS_LCD12864 is a variant of MKS_MINI_12864
|
2020-06-16 09:43:09 +02:00
|
|
|
#if ENABLED(MKS_LCD12864)
|
|
|
|
#define MKS_MINI_12864
|
|
|
|
#endif
|
|
|
|
|
2020-09-07 04:40:58 +02:00
|
|
|
/**
|
|
|
|
* 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. Used most often with NEWPANEL.
|
|
|
|
* 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
|
|
|
|
*/
|
2020-06-16 09:43:09 +02:00
|
|
|
#if EITHER(MKS_MINI_12864, ENDER2_STOCKDISPLAY)
|
|
|
|
|
|
|
|
#define MINIPANEL
|
|
|
|
|
|
|
|
#elif ENABLED(CARTESIO_UI)
|
2017-06-24 20:56:07 +02:00
|
|
|
|
2017-10-19 07:43:07 +02:00
|
|
|
#define DOGLCD
|
2019-07-14 16:19:29 +02:00
|
|
|
#define IS_ULTIPANEL
|
2016-07-26 03:07:15 +02:00
|
|
|
|
2020-09-07 04:40:58 +02:00
|
|
|
#elif EITHER(DWIN_MARLINUI_PORTRAIT, DWIN_MARLINUI_LANDSCAPE)
|
|
|
|
|
|
|
|
#define IS_DWIN_MARLINUI 1
|
|
|
|
#define IS_ULTIPANEL
|
|
|
|
|
2017-12-16 02:05:57 +01:00
|
|
|
#elif ENABLED(ZONESTAR_LCD)
|
2017-06-10 07:12:18 +02:00
|
|
|
|
2018-11-03 04:29:32 +01:00
|
|
|
#define ADC_KEYPAD
|
2019-07-14 16:19:29 +02:00
|
|
|
#define IS_RRW_KEYPAD
|
2017-10-19 07:43:07 +02:00
|
|
|
#define REPRAPWORLD_KEYPAD_MOVE_STEP 10.0
|
|
|
|
#define ADC_KEY_NUM 8
|
2019-07-14 16:19:29 +02:00
|
|
|
#define IS_ULTIPANEL
|
2017-06-10 07:12:18 +02:00
|
|
|
|
2019-06-19 02:34:16 +02:00
|
|
|
// This helps to implement ADC_KEYPAD menus
|
2018-11-22 13:00:00 +01:00
|
|
|
#define REVERSE_MENU_DIRECTION
|
2017-10-19 07:43:07 +02:00
|
|
|
#define ENCODER_PULSES_PER_STEP 1
|
|
|
|
#define ENCODER_STEPS_PER_MENU_ITEM 1
|
2017-11-05 03:22:53 +01:00
|
|
|
#define ENCODER_FEEDRATE_DEADZONE 2
|
2017-06-24 20:56:07 +02:00
|
|
|
|
2020-08-08 00:03:59 +02:00
|
|
|
#elif ENABLED(ZONESTAR_12864LCD)
|
|
|
|
#define DOGLCD
|
|
|
|
#define IS_RRD_SC
|
|
|
|
#define U8GLIB_ST7920
|
|
|
|
|
|
|
|
#elif ENABLED(ZONESTAR_12864OLED)
|
|
|
|
#define IS_RRD_SC
|
|
|
|
#define U8GLIB_SH1106
|
|
|
|
|
|
|
|
#elif ENABLED(ZONESTAR_12864OLED_SSD1306)
|
|
|
|
#define IS_RRD_SC
|
|
|
|
#define IS_U8GLIB_SSD1306
|
|
|
|
|
2018-01-05 17:10:55 +01:00
|
|
|
#elif ENABLED(RADDS_DISPLAY)
|
2019-07-14 16:19:29 +02:00
|
|
|
#define IS_ULTIPANEL
|
2017-12-23 21:23:05 +01:00
|
|
|
#define ENCODER_PULSES_PER_STEP 2
|
|
|
|
|
2019-07-14 16:19:29 +02:00
|
|
|
#elif EITHER(ANET_FULL_GRAPHICS_LCD, BQ_LCD_SMART_CONTROLLER)
|
2017-06-24 20:56:07 +02:00
|
|
|
|
2019-07-14 16:19:29 +02:00
|
|
|
#define IS_RRD_FG_SC
|
2016-07-26 03:07:15 +02:00
|
|
|
|
2019-03-17 05:43:06 +01:00
|
|
|
#elif ANY(miniVIKI, VIKI2, ELB_FULL_GRAPHIC_CONTROLLER, AZSMZ_12864)
|
2017-06-24 20:56:07 +02:00
|
|
|
|
2019-03-11 11:07:14 +01:00
|
|
|
#define DOGLCD
|
2019-07-14 16:19:29 +02:00
|
|
|
#define IS_ULTIPANEL
|
2017-06-24 20:56:07 +02:00
|
|
|
|
2017-10-19 07:43:07 +02:00
|
|
|
#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
|
2017-06-24 20:56:07 +02:00
|
|
|
|
2017-10-19 07:43:07 +02:00
|
|
|
#elif ENABLED(OLED_PANEL_TINYBOY2)
|
2017-06-24 20:56:07 +02:00
|
|
|
|
2019-07-14 16:19:29 +02:00
|
|
|
#define IS_U8GLIB_SSD1306
|
|
|
|
#define IS_ULTIPANEL
|
2017-06-24 20:56:07 +02:00
|
|
|
|
2017-10-19 07:43:07 +02:00
|
|
|
#elif ENABLED(RA_CONTROL_PANEL)
|
2017-10-09 22:58:02 +02:00
|
|
|
|
2017-10-19 07:43:07 +02:00
|
|
|
#define LCD_I2C_TYPE_PCA8574
|
|
|
|
#define LCD_I2C_ADDRESS 0x27 // I2C Address of the port expander
|
2019-07-14 16:19:29 +02:00
|
|
|
#define IS_ULTIPANEL
|
2017-10-09 22:58:02 +02:00
|
|
|
|
2017-10-19 07:43:07 +02:00
|
|
|
#elif ENABLED(REPRAPWORLD_GRAPHICAL_LCD)
|
2017-10-09 22:58:02 +02:00
|
|
|
|
2017-10-19 07:43:07 +02:00
|
|
|
#define DOGLCD
|
|
|
|
#define U8GLIB_ST7920
|
2019-07-14 16:19:29 +02:00
|
|
|
#define IS_ULTIPANEL
|
2017-10-09 22:58:02 +02:00
|
|
|
|
2017-10-19 07:43:07 +02:00
|
|
|
#elif ENABLED(CR10_STOCKDISPLAY)
|
2017-10-09 22:58:02 +02:00
|
|
|
|
2019-07-14 16:19:29 +02:00
|
|
|
#define IS_RRD_FG_SC
|
2020-06-22 22:27:01 +02:00
|
|
|
#define BOARD_ST7920_DELAY_1 DELAY_NS(125)
|
|
|
|
#define BOARD_ST7920_DELAY_2 DELAY_NS(125)
|
|
|
|
#define BOARD_ST7920_DELAY_3 DELAY_NS(125)
|
2016-07-26 03:07:15 +02:00
|
|
|
|
2017-10-19 07:43:07 +02:00
|
|
|
#elif ENABLED(MKS_12864OLED)
|
2017-10-09 22:58:02 +02:00
|
|
|
|
2019-07-14 16:19:29 +02:00
|
|
|
#define IS_RRD_SC
|
2017-10-19 07:43:07 +02:00
|
|
|
#define U8GLIB_SH1106
|
2017-10-09 22:58:02 +02:00
|
|
|
|
2017-12-17 01:47:04 +01:00
|
|
|
#elif ENABLED(MKS_12864OLED_SSD1306)
|
|
|
|
|
2019-07-14 16:19:29 +02:00
|
|
|
#define IS_RRD_SC
|
|
|
|
#define IS_U8GLIB_SSD1306
|
2017-12-17 01:47:04 +01:00
|
|
|
|
2020-07-03 03:33:52 +02:00
|
|
|
#elif ENABLED(FYSETC_242_OLED_12864)
|
2020-07-07 08:57:05 +02:00
|
|
|
|
2020-07-03 03:33:52 +02:00
|
|
|
#define IS_RRD_SC
|
|
|
|
#define U8GLIB_SH1106
|
2020-07-07 08:57:05 +02:00
|
|
|
|
2020-07-03 03:33:52 +02:00
|
|
|
#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
|
2020-07-07 08:57:05 +02:00
|
|
|
|
2020-07-03 03:33:52 +02:00
|
|
|
#if ENABLED(PSU_CONTROL)
|
|
|
|
#define LED_BACKLIGHT_TIMEOUT 10000
|
|
|
|
#endif
|
|
|
|
|
2020-01-17 20:16:05 +01:00
|
|
|
#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)
|
2019-04-10 01:34:29 +02:00
|
|
|
|
2019-05-02 03:05:29 +02:00
|
|
|
#define FYSETC_MINI_12864
|
2019-04-10 01:34:29 +02:00
|
|
|
#define DOGLCD
|
2019-07-14 16:19:29 +02:00
|
|
|
#define IS_ULTIPANEL
|
2019-04-10 01:34:29 +02:00
|
|
|
#define LED_COLORS_REDUCE_GREEN
|
2019-10-22 22:43:37 +02:00
|
|
|
#if ENABLED(PSU_CONTROL) && EITHER(FYSETC_MINI_12864_2_0, FYSETC_MINI_12864_2_1)
|
2019-06-13 04:59:39 +02:00
|
|
|
#define LED_BACKLIGHT_TIMEOUT 10000
|
|
|
|
#endif
|
2019-04-10 01:34:29 +02:00
|
|
|
|
2019-05-02 03:05:29 +02:00
|
|
|
// 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)
|
2019-09-30 09:11:58 +02:00
|
|
|
#define LED_CONTROL_MENU
|
2019-05-02 03:05:29 +02:00
|
|
|
#define NEOPIXEL_LED
|
2019-05-11 23:51:39 +02:00
|
|
|
#undef NEOPIXEL_TYPE
|
|
|
|
#define NEOPIXEL_TYPE NEO_RGB
|
2019-07-21 06:14:09 +02:00
|
|
|
#if NEOPIXEL_PIXELS < 3
|
|
|
|
#undef NEOPIXELS_PIXELS
|
|
|
|
#define NEOPIXEL_PIXELS 3
|
|
|
|
#endif
|
2019-05-11 23:51:39 +02:00
|
|
|
#ifndef NEOPIXEL_BRIGHTNESS
|
|
|
|
#define NEOPIXEL_BRIGHTNESS 127
|
|
|
|
#endif
|
2019-07-21 06:14:09 +02:00
|
|
|
//#define NEOPIXEL_STARTUP_TEST
|
2019-05-02 03:05:29 +02:00
|
|
|
#endif
|
|
|
|
|
2019-07-14 16:19:29 +02:00
|
|
|
#elif ENABLED(ULTI_CONTROLLER)
|
|
|
|
|
2019-08-02 13:19:45 +02:00
|
|
|
#define IS_ULTIPANEL
|
2019-07-14 16:19:29 +02:00
|
|
|
#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
|
|
|
|
#define LCD_WIDTH 16
|
|
|
|
#define LCD_HEIGHT 2
|
|
|
|
|
2020-09-28 08:52:38 +02:00
|
|
|
#elif EITHER(TFTGLCD_PANEL_SPI, TFTGLCD_PANEL_I2C)
|
|
|
|
|
|
|
|
#define IS_TFTGLCD_PANEL 1
|
|
|
|
#define IS_ULTIPANEL // 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
|
2020-10-10 12:01:46 +02:00
|
|
|
#define LCD_USE_I2C_BUZZER // Enable buzzer on LCD, used for both I2C and SPI buses (LiquidTWI2 not required)
|
2020-09-28 08:52:38 +02:00
|
|
|
#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.
|
2019-07-14 16:19:29 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if ENABLED(IS_RRD_FG_SC)
|
|
|
|
#define REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER
|
2017-10-19 07:43:07 +02:00
|
|
|
#endif
|
2016-07-26 03:07:15 +02:00
|
|
|
|
2019-03-17 05:43:06 +01:00
|
|
|
#if EITHER(MAKRPANEL, MINIPANEL)
|
2019-07-14 16:19:29 +02:00
|
|
|
#define IS_ULTIPANEL
|
2017-10-19 07:43:07 +02:00
|
|
|
#define DOGLCD
|
2019-07-14 16:19:29 +02:00
|
|
|
#if ENABLED(MAKRPANEL)
|
|
|
|
#define U8GLIB_ST7565_64128N
|
|
|
|
#endif
|
2017-10-19 07:43:07 +02:00
|
|
|
#endif
|
2016-07-26 03:07:15 +02:00
|
|
|
|
2019-07-14 16:19:29 +02:00
|
|
|
#if ENABLED(IS_U8GLIB_SSD1306)
|
|
|
|
#define U8GLIB_SSD1306
|
2018-02-06 05:25:49 +01:00
|
|
|
#endif
|
|
|
|
|
2019-08-02 13:19:45 +02:00
|
|
|
#if ENABLED(OVERLORD_OLED)
|
|
|
|
#define IS_ULTIPANEL
|
|
|
|
#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
|
|
|
|
|
2019-02-23 02:08:36 +01:00
|
|
|
// 128x64 I2C OLED LCDs - SSD1306/SSD1309/SH1106
|
2020-03-08 05:20:41 +01:00
|
|
|
#if ANY(U8GLIB_SSD1306, U8GLIB_SSD1309, U8GLIB_SH1106)
|
2020-09-07 04:40:58 +02:00
|
|
|
#define HAS_U8GLIB_I2C_OLED 1
|
2020-03-08 05:20:41 +01:00
|
|
|
#endif
|
2020-09-07 04:40:58 +02:00
|
|
|
#if HAS_U8GLIB_I2C_OLED
|
2019-07-14 16:19:29 +02:00
|
|
|
#define IS_ULTRA_LCD
|
2019-02-23 02:08:36 +01:00
|
|
|
#define DOGLCD
|
2017-10-19 07:43:07 +02:00
|
|
|
#endif
|
2016-07-26 03:07:15 +02:00
|
|
|
|
2019-08-02 13:19:45 +02:00
|
|
|
// ST7920-based graphical displays
|
2019-03-17 05:43:06 +01:00
|
|
|
#if ANY(REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER, LCD_FOR_MELZI, SILVER_GATE_GLCD_CONTROLLER)
|
2017-10-19 07:43:07 +02:00
|
|
|
#define DOGLCD
|
|
|
|
#define U8GLIB_ST7920
|
2019-07-14 16:19:29 +02:00
|
|
|
#define IS_RRD_SC
|
2017-10-19 07:43:07 +02:00
|
|
|
#endif
|
2017-06-24 20:56:07 +02:00
|
|
|
|
2019-08-02 13:19:45 +02:00
|
|
|
// RepRapDiscount LCD or Graphical LCD with rotary click encoder
|
2019-07-14 16:19:29 +02:00
|
|
|
#if ENABLED(IS_RRD_SC)
|
|
|
|
#define REPRAP_DISCOUNT_SMART_CONTROLLER
|
2017-10-19 07:43:07 +02:00
|
|
|
#endif
|
2017-06-24 20:56:07 +02:00
|
|
|
|
2019-08-02 13:19:45 +02:00
|
|
|
/**
|
|
|
|
* SPI Ultipanels
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Basic Ultipanel-like displays
|
|
|
|
#if ANY(ULTIMAKERCONTROLLER, REPRAP_DISCOUNT_SMART_CONTROLLER, G3D_PANEL, RIGIDBOT_PANEL, PANEL_ONE, U8GLIB_SH1106)
|
2019-07-14 16:19:29 +02:00
|
|
|
#define IS_ULTIPANEL
|
2017-10-19 07:43:07 +02:00
|
|
|
#endif
|
2016-07-26 03:07:15 +02:00
|
|
|
|
2019-08-02 13:19:45 +02:00
|
|
|
// Einstart OLED has Cardinal nav via pins defined in pins_EINSTART-S.h
|
|
|
|
#if ENABLED(U8GLIB_SH1106_EINSTART)
|
|
|
|
#define DOGLCD
|
|
|
|
#define IS_ULTIPANEL
|
|
|
|
#endif
|
2018-07-26 12:52:22 +02:00
|
|
|
|
2020-10-12 23:38:07 +02:00
|
|
|
// Compatibility
|
|
|
|
#if ENABLED(FSMC_GRAPHICAL_TFT)
|
|
|
|
#define TFT_CLASSIC_UI
|
|
|
|
#define TFT_INTERFACE_FSMC
|
|
|
|
#define TFT_GENERIC
|
|
|
|
#elif ENABLED(SPI_GRAPHICAL_TFT)
|
|
|
|
#define TFT_CLASSIC_UI
|
|
|
|
#define TFT_INTERFACE_SPI
|
|
|
|
#define TFT_GENERIC
|
|
|
|
#elif EITHER(TFT_320x240, TFT_480x320)
|
|
|
|
#define TFT_COLOR_UI
|
|
|
|
#define TFT_INTERFACE_FSMC
|
|
|
|
#define TFT_GENERIC
|
|
|
|
#elif EITHER(TFT_320x240_SPI, TFT_480x320_SPI)
|
|
|
|
#define TFT_COLOR_UI
|
|
|
|
#define TFT_INTERFACE_SPI
|
|
|
|
#define TFT_GENERIC
|
|
|
|
#elif ENABLED(TFT_LVGL_UI_FSMC)
|
|
|
|
#define TFT_LVGL_UI
|
|
|
|
#define TFT_INTERFACE_FSMC
|
|
|
|
#define TFT_GENERIC
|
|
|
|
#elif ENABLED(TFT_LVGL_UI_SPI)
|
|
|
|
#define TFT_LVGL_UI
|
|
|
|
#define TFT_INTERFACE_SPI
|
|
|
|
#define TFT_GENERIC
|
|
|
|
#endif
|
|
|
|
|
2020-07-30 08:43:19 +02:00
|
|
|
// FSMC/SPI TFT Panels (LVGL)
|
2020-10-12 23:38:07 +02:00
|
|
|
#if ENABLED(TFT_LVGL_UI)
|
2020-07-25 07:52:07 +02:00
|
|
|
#define HAS_TFT_LVGL_UI 1
|
|
|
|
#endif
|
|
|
|
|
2019-08-02 13:19:45 +02:00
|
|
|
// FSMC/SPI TFT Panels
|
2020-10-12 23:38:07 +02:00
|
|
|
#if ENABLED(TFT_CLASSIC_UI)
|
2020-07-30 04:25:07 +02:00
|
|
|
#define TFT_SCALED_DOGLCD 1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if TFT_SCALED_DOGLCD
|
2019-08-02 13:19:45 +02:00
|
|
|
#define DOGLCD
|
|
|
|
#define IS_ULTIPANEL
|
|
|
|
#define DELAYED_BACKLIGHT_INIT
|
2020-10-12 23:38:07 +02:00
|
|
|
#elif ENABLED(TFT_LVGL_UI)
|
2020-06-16 04:05:33 +02:00
|
|
|
#define DELAYED_BACKLIGHT_INIT
|
2019-08-02 13:19:45 +02:00
|
|
|
#endif
|
2019-01-03 17:38:39 +01:00
|
|
|
|
2020-08-22 01:54:21 +02:00
|
|
|
// Color UI
|
2020-10-12 23:38:07 +02:00
|
|
|
#if ENABLED(TFT_COLOR_UI)
|
2020-07-30 08:43:19 +02:00
|
|
|
#define HAS_GRAPHICAL_TFT 1
|
|
|
|
#define IS_ULTIPANEL
|
|
|
|
#endif
|
|
|
|
|
2017-10-19 07:43:07 +02:00
|
|
|
/**
|
2019-08-02 13:19:45 +02:00
|
|
|
* I2C Panels
|
2017-10-19 07:43:07 +02:00
|
|
|
*/
|
2017-06-24 20:56:07 +02:00
|
|
|
|
2019-03-17 05:43:06 +01:00
|
|
|
#if EITHER(LCD_SAINSMART_I2C_1602, LCD_SAINSMART_I2C_2004)
|
2016-08-03 00:54:33 +02:00
|
|
|
|
2017-10-19 07:43:07 +02:00
|
|
|
#define LCD_I2C_TYPE_PCF8575
|
|
|
|
#define LCD_I2C_ADDRESS 0x27 // I2C Address of the port expander
|
2018-02-21 07:46:25 +01:00
|
|
|
|
|
|
|
#if ENABLED(LCD_SAINSMART_I2C_2004)
|
|
|
|
#define LCD_WIDTH 20
|
|
|
|
#define LCD_HEIGHT 4
|
|
|
|
#endif
|
2017-09-27 06:34:09 +02:00
|
|
|
|
2017-10-19 07:43:07 +02:00
|
|
|
#elif ENABLED(LCD_I2C_PANELOLU2)
|
2017-09-27 06:34:09 +02:00
|
|
|
|
2017-10-19 07:43:07 +02:00
|
|
|
// PANELOLU2 LCD with status LEDs, separate encoder and click inputs
|
2017-09-27 06:34:09 +02:00
|
|
|
|
2017-10-19 07:43:07 +02:00
|
|
|
#define LCD_I2C_TYPE_MCP23017
|
|
|
|
#define LCD_I2C_ADDRESS 0x20 // I2C Address of the port expander
|
2018-02-21 07:46:25 +01:00
|
|
|
#define LCD_USE_I2C_BUZZER // Enable buzzer on LCD (optional)
|
2019-07-14 16:19:29 +02:00
|
|
|
#define IS_ULTIPANEL
|
2016-07-26 03:07:15 +02:00
|
|
|
|
2017-10-19 07:43:07 +02:00
|
|
|
#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
|
2018-02-21 07:46:25 +01:00
|
|
|
#define LCD_USE_I2C_BUZZER // Enable buzzer on LCD (requires LiquidTWI2 v1.2.3 or later)
|
2019-07-14 16:19:29 +02:00
|
|
|
#define IS_ULTIPANEL
|
2017-10-19 07:43:07 +02:00
|
|
|
|
|
|
|
#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
|
|
|
|
|
2019-07-14 16:19:29 +02:00
|
|
|
#elif ANY(REPRAP_DISCOUNT_SMART_CONTROLLER, miniVIKI, VIKI2, ELB_FULL_GRAPHIC_CONTROLLER, AZSMZ_12864, OLED_PANEL_TINYBOY2, BQ_LCD_SMART_CONTROLLER, LCD_I2C_PANELOLU2)
|
2019-03-17 05:43:06 +01:00
|
|
|
|
2017-10-19 07:43:07 +02:00
|
|
|
#define STD_ENCODER_PULSES_PER_STEP 4
|
|
|
|
#define STD_ENCODER_STEPS_PER_MENU_ITEM 1
|
2019-03-17 05:43:06 +01:00
|
|
|
|
2017-10-19 07:43:07 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef STD_ENCODER_PULSES_PER_STEP
|
2020-07-30 08:43:19 +02:00
|
|
|
#if ENABLED(TOUCH_SCREEN)
|
2019-12-06 07:47:50 +01:00
|
|
|
#define STD_ENCODER_PULSES_PER_STEP 2
|
2019-09-04 20:13:05 +02:00
|
|
|
#else
|
|
|
|
#define STD_ENCODER_PULSES_PER_STEP 5
|
|
|
|
#endif
|
2017-10-19 07:43:07 +02:00
|
|
|
#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
|
2019-01-14 21:29:55 +01:00
|
|
|
#if ENABLED(FF_INTERFACEBOARD)
|
|
|
|
#define SR_LCD_3W_NL // Non latching 3 wire shift register
|
2019-07-14 16:19:29 +02:00
|
|
|
#define IS_ULTIPANEL
|
|
|
|
#elif ENABLED(SAV_3DLCD)
|
|
|
|
#define SR_LCD_2W_NL // Non latching 2 wire shift register
|
|
|
|
#define IS_ULTIPANEL
|
2019-01-14 21:29:55 +01:00
|
|
|
#endif
|
2017-10-19 07:43:07 +02:00
|
|
|
|
2019-07-14 16:19:29 +02:00
|
|
|
#if ENABLED(IS_ULTIPANEL)
|
2017-10-19 07:43:07 +02:00
|
|
|
#define ULTIPANEL
|
|
|
|
#endif
|
|
|
|
#if ENABLED(ULTIPANEL)
|
2019-07-14 16:19:29 +02:00
|
|
|
#define IS_ULTRA_LCD
|
2020-05-03 06:26:12 +02:00
|
|
|
#define NEWPANEL
|
2019-07-14 16:19:29 +02:00
|
|
|
#endif
|
|
|
|
#if ENABLED(IS_ULTRA_LCD)
|
2017-10-19 07:43:07 +02:00
|
|
|
#define ULTRA_LCD
|
|
|
|
#endif
|
|
|
|
|
2019-07-14 16:19:29 +02:00
|
|
|
#if ENABLED(IS_RRW_KEYPAD)
|
|
|
|
#define REPRAPWORLD_KEYPAD
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Keypad needs a move step
|
|
|
|
#if ENABLED(REPRAPWORLD_KEYPAD)
|
|
|
|
#define NEWPANEL
|
|
|
|
#ifndef REPRAPWORLD_KEYPAD_MOVE_STEP
|
|
|
|
#define REPRAPWORLD_KEYPAD_MOVE_STEP 1.0
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2020-03-11 09:40:30 +01:00
|
|
|
// Aliases for LCD features
|
2020-03-08 05:20:41 +01:00
|
|
|
#if ANY(DGUS_LCD_UI_ORIGIN, DGUS_LCD_UI_FYSETC, DGUS_LCD_UI_HIPRECY)
|
|
|
|
#define HAS_DGUS_LCD 1
|
|
|
|
#endif
|
|
|
|
|
2020-04-25 05:35:46 +02:00
|
|
|
// Extensible UI serial touch screens. (See src/lcd/extui)
|
2020-08-06 12:38:18 +02:00
|
|
|
#if ANY(HAS_DGUS_LCD, MALYAN_LCD, TOUCH_UI_FTDI_EVE, ANYCUBIC_LCD_I3MEGA, ANYCUBIC_LCD_CHIRON)
|
2019-07-14 16:19:29 +02:00
|
|
|
#define IS_EXTUI
|
2019-05-08 03:32:50 +02:00
|
|
|
#define EXTENSIBLE_UI
|
|
|
|
#endif
|
|
|
|
|
2018-10-23 23:00:34 +02:00
|
|
|
// Aliases for LCD features
|
2020-03-08 05:20:41 +01:00
|
|
|
#if EITHER(ULTRA_LCD, EXTENSIBLE_UI)
|
|
|
|
#define HAS_DISPLAY 1
|
2020-07-30 08:43:19 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#if ENABLED(ULTRA_LCD)
|
2020-09-28 08:13:27 +02:00
|
|
|
#define HAS_WIRED_LCD 1
|
2020-07-30 08:43:19 +02:00
|
|
|
#if ENABLED(DOGLCD)
|
2020-09-28 08:13:27 +02:00
|
|
|
#define HAS_MARLINUI_U8GLIB 1
|
2020-09-28 08:52:38 +02:00
|
|
|
#elif IS_TFTGLCD_PANEL
|
|
|
|
// Neither DOGM nor HD44780. Fully customized interface.
|
2020-07-30 08:43:19 +02:00
|
|
|
#elif DISABLED(HAS_GRAPHICAL_TFT)
|
2020-09-28 08:13:27 +02:00
|
|
|
#define HAS_MARLINUI_HD44780 1
|
2020-03-08 05:20:41 +01:00
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if ENABLED(ULTIPANEL) && DISABLED(NO_LCD_MENUS)
|
|
|
|
#define HAS_LCD_MENU 1
|
|
|
|
#endif
|
|
|
|
#if ENABLED(ADC_KEYPAD)
|
|
|
|
#define HAS_ADC_BUTTONS 1
|
|
|
|
#endif
|
2018-11-21 04:39:30 +01:00
|
|
|
|
2020-09-28 08:13:27 +02:00
|
|
|
#if HAS_MARLINUI_U8GLIB
|
2020-02-23 04:36:12 +01:00
|
|
|
#ifndef LCD_PIXEL_WIDTH
|
|
|
|
#define LCD_PIXEL_WIDTH 128
|
|
|
|
#endif
|
|
|
|
#ifndef LCD_PIXEL_HEIGHT
|
|
|
|
#define LCD_PIXEL_HEIGHT 64
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
2017-10-19 07:43:07 +02:00
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
*/
|
2019-02-01 02:10:52 +01:00
|
|
|
|
2019-03-01 08:51:24 +01:00
|
|
|
#if EXTRUDERS == 0
|
2020-04-27 11:41:18 +02:00
|
|
|
#undef EXTRUDERS
|
|
|
|
#define EXTRUDERS 0
|
2019-03-01 08:51:24 +01:00
|
|
|
#undef SINGLENOZZLE
|
|
|
|
#undef SWITCHING_EXTRUDER
|
|
|
|
#undef SWITCHING_NOZZLE
|
|
|
|
#undef MIXING_EXTRUDER
|
|
|
|
#undef MK2_MULTIPLEXER
|
|
|
|
#undef PRUSA_MMU2
|
2020-05-18 07:50:35 +02:00
|
|
|
#undef HOTEND_IDLE_TIMEOUT
|
2020-09-21 01:29:08 +02:00
|
|
|
#elif EXTRUDERS > 1
|
|
|
|
#define HAS_MULTI_EXTRUDER 1
|
2019-03-01 08:51:24 +01:00
|
|
|
#endif
|
|
|
|
|
2019-02-01 02:10:52 +01:00
|
|
|
#if ENABLED(SWITCHING_EXTRUDER) // One stepper for every two EXTRUDERS
|
2018-02-19 17:59:23 +01:00
|
|
|
#if EXTRUDERS > 4
|
|
|
|
#define E_STEPPERS 3
|
|
|
|
#elif EXTRUDERS > 2
|
|
|
|
#define E_STEPPERS 2
|
2017-09-06 13:28:32 +02:00
|
|
|
#else
|
2018-02-19 17:59:23 +01:00
|
|
|
#define E_STEPPERS 1
|
2017-09-06 13:28:32 +02:00
|
|
|
#endif
|
2018-05-29 18:05:52 +02:00
|
|
|
#if DISABLED(SWITCHING_NOZZLE)
|
|
|
|
#define HOTENDS E_STEPPERS
|
|
|
|
#endif
|
2018-02-19 17:59:23 +01:00
|
|
|
#elif ENABLED(MIXING_EXTRUDER)
|
|
|
|
#define E_STEPPERS MIXING_STEPPERS
|
|
|
|
#define E_MANUAL 1
|
2020-04-22 23:35:03 +02:00
|
|
|
#if MIXING_STEPPERS == 2
|
|
|
|
#define HAS_DUAL_MIXING 1
|
|
|
|
#endif
|
2018-09-08 08:43:24 +02:00
|
|
|
#elif ENABLED(SWITCHING_TOOLHEAD)
|
2018-02-19 17:59:23 +01:00
|
|
|
#define E_STEPPERS EXTRUDERS
|
|
|
|
#define E_MANUAL EXTRUDERS
|
2019-02-01 02:10:52 +01:00
|
|
|
#elif ENABLED(PRUSA_MMU2)
|
|
|
|
#define E_STEPPERS 1
|
2017-10-19 07:43:07 +02:00
|
|
|
#endif
|
2017-09-06 13:28:32 +02:00
|
|
|
|
2018-07-02 23:54:52 +02:00
|
|
|
// No inactive extruders with MK2_MULTIPLEXER or SWITCHING_NOZZLE
|
2019-03-17 05:43:06 +01:00
|
|
|
#if EITHER(MK2_MULTIPLEXER, SWITCHING_NOZZLE)
|
2018-07-02 23:54:52 +02:00
|
|
|
#undef DISABLE_INACTIVE_EXTRUDER
|
|
|
|
#endif
|
|
|
|
|
2020-08-26 09:15:43 +02:00
|
|
|
// Průša MK2 Multiplexer and MMU 2.0 force SINGLENOZZLE
|
2019-03-17 05:43:06 +01:00
|
|
|
#if EITHER(MK2_MULTIPLEXER, PRUSA_MMU2)
|
2018-07-02 23:54:52 +02:00
|
|
|
#define SINGLENOZZLE
|
|
|
|
#endif
|
|
|
|
|
2019-03-17 05:43:06 +01:00
|
|
|
#if EITHER(SINGLENOZZLE, MIXING_EXTRUDER) // One hotend, one thermistor, no XY offset
|
2018-05-28 00:56:21 +02:00
|
|
|
#undef HOTENDS
|
|
|
|
#define HOTENDS 1
|
|
|
|
#undef HOTEND_OFFSET_X
|
|
|
|
#undef HOTEND_OFFSET_Y
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HOTENDS
|
|
|
|
#define HOTENDS EXTRUDERS
|
|
|
|
#endif
|
2018-09-08 08:43:24 +02:00
|
|
|
#ifndef E_STEPPERS
|
|
|
|
#define E_STEPPERS EXTRUDERS
|
|
|
|
#endif
|
|
|
|
#ifndef E_MANUAL
|
|
|
|
#define E_MANUAL EXTRUDERS
|
|
|
|
#endif
|
|
|
|
|
2020-04-20 06:56:55 +02:00
|
|
|
#if HOTENDS
|
|
|
|
#define HAS_HOTEND 1
|
2020-04-27 11:48:11 +02:00
|
|
|
#ifndef HOTEND_OVERSHOOT
|
|
|
|
#define HOTEND_OVERSHOOT 15
|
|
|
|
#endif
|
2020-04-27 11:49:31 +02:00
|
|
|
#if HOTENDS > 1
|
2020-04-20 06:56:55 +02:00
|
|
|
#define HAS_MULTI_HOTEND 1
|
|
|
|
#define HAS_HOTEND_OFFSET 1
|
|
|
|
#endif
|
2020-07-01 23:18:20 +02:00
|
|
|
#else
|
|
|
|
#undef PID_PARAMS_PER_HOTEND
|
2020-04-20 06:56:55 +02:00
|
|
|
#endif
|
|
|
|
|
2020-02-29 11:14:40 +01:00
|
|
|
// Helper macros for extruder and hotend arrays
|
2018-07-02 23:54:52 +02:00
|
|
|
#define HOTEND_LOOP() for (int8_t e = 0; e < HOTENDS; e++)
|
2020-02-29 11:14:40 +01:00
|
|
|
#define ARRAY_BY_EXTRUDERS(V...) ARRAY_N(EXTRUDERS, V)
|
2020-03-02 04:19:02 +01:00
|
|
|
#define ARRAY_BY_EXTRUDERS1(v1) ARRAY_BY_EXTRUDERS(v1, v1, v1, v1, v1, v1, v1, v1)
|
2020-02-29 11:14:40 +01:00
|
|
|
#define ARRAY_BY_HOTENDS(V...) ARRAY_N(HOTENDS, V)
|
2020-03-02 04:19:02 +01:00
|
|
|
#define ARRAY_BY_HOTENDS1(v1) ARRAY_BY_HOTENDS(v1, v1, v1, v1, v1, v1, v1, v1)
|
2018-07-02 23:54:52 +02:00
|
|
|
|
2020-03-08 05:20:41 +01:00
|
|
|
#if ENABLED(SWITCHING_EXTRUDER) && (DISABLED(SWITCHING_NOZZLE) || SWITCHING_EXTRUDER_SERVO_NR != SWITCHING_NOZZLE_SERVO_NR)
|
|
|
|
#define DO_SWITCH_EXTRUDER 1
|
|
|
|
#endif
|
2018-05-18 20:16:59 +02:00
|
|
|
|
2020-02-29 11:14:40 +01:00
|
|
|
/**
|
|
|
|
* 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
|
|
|
|
|
2017-10-19 07:43:07 +02:00
|
|
|
/**
|
|
|
|
* DISTINCT_E_FACTORS affects how some E factors are accessed
|
|
|
|
*/
|
|
|
|
#if ENABLED(DISTINCT_E_FACTORS) && E_STEPPERS > 1
|
2020-05-05 07:28:39 +02:00
|
|
|
#define DISTINCT_E E_STEPPERS
|
2017-10-19 07:43:07 +02:00
|
|
|
#define XYZE_N (XYZ + E_STEPPERS)
|
2020-05-05 07:28:39 +02:00
|
|
|
#define E_INDEX_N(E) (E)
|
2019-04-11 20:58:50 +02:00
|
|
|
#define E_AXIS_N(E) AxisEnum(E_AXIS + E)
|
2019-06-29 07:23:57 +02:00
|
|
|
#define UNUSED_E(E) NOOP
|
2017-10-19 07:43:07 +02:00
|
|
|
#else
|
|
|
|
#undef DISTINCT_E_FACTORS
|
2020-05-05 07:28:39 +02:00
|
|
|
#define DISTINCT_E 1
|
2017-10-19 07:43:07 +02:00
|
|
|
#define XYZE_N XYZE
|
2020-05-05 07:28:39 +02:00
|
|
|
#define E_INDEX_N(E) 0
|
2019-01-31 03:55:05 +01:00
|
|
|
#define E_AXIS_N(E) E_AXIS
|
2019-06-29 07:23:57 +02:00
|
|
|
#define UNUSED_E(E) UNUSED(E)
|
2017-10-19 07:43:07 +02:00
|
|
|
#endif
|
2016-08-02 06:13:13 +02:00
|
|
|
|
2020-06-16 08:45:27 +02:00
|
|
|
#if ENABLED(DWIN_CREALITY_LCD)
|
|
|
|
#define SERIAL_CATCHALL 0
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Pressure sensor with a BLTouch-like interface
|
|
|
|
#if ENABLED(CREALITY_TOUCH)
|
|
|
|
#define BLTOUCH
|
|
|
|
#endif
|
|
|
|
|
2017-10-19 07:43:07 +02:00
|
|
|
/**
|
|
|
|
* The BLTouch Probe emulates a servo probe
|
|
|
|
* and uses "special" angles for its state.
|
|
|
|
*/
|
|
|
|
#if ENABLED(BLTOUCH)
|
2018-04-02 06:54:12 +02:00
|
|
|
#ifndef Z_PROBE_SERVO_NR
|
|
|
|
#define Z_PROBE_SERVO_NR 0
|
2016-12-04 05:02:27 +01:00
|
|
|
#endif
|
2017-10-19 07:43:07 +02:00
|
|
|
#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
|
2019-03-17 11:57:25 +01:00
|
|
|
#define Z_MIN_ENDSTOP_INVERTING false
|
2017-10-19 07:43:07 +02:00
|
|
|
#endif
|
|
|
|
#endif
|
2017-05-19 13:50:01 +02:00
|
|
|
|
2017-10-19 07:43:07 +02:00
|
|
|
/**
|
2020-02-11 16:05:45 +01:00
|
|
|
* Set a flag for a servo probe (or BLTouch)
|
2017-10-19 07:43:07 +02:00
|
|
|
*/
|
2020-10-07 01:36:01 +02:00
|
|
|
#ifdef Z_PROBE_SERVO_NR
|
2020-03-08 05:20:41 +01:00
|
|
|
#define HAS_Z_SERVO_PROBE 1
|
|
|
|
#endif
|
2020-05-12 06:25:39 +02:00
|
|
|
#if ANY(HAS_Z_SERVO_PROBE, SWITCHING_EXTRUDER, SWITCHING_NOZZLE)
|
2020-03-08 05:20:41 +01:00
|
|
|
#define HAS_SERVO_ANGLES 1
|
|
|
|
#endif
|
2020-02-26 13:26:54 +01:00
|
|
|
#if !HAS_SERVO_ANGLES
|
|
|
|
#undef EDITABLE_SERVO_ANGLES
|
|
|
|
#endif
|
2016-08-22 22:02:19 +02:00
|
|
|
|
2017-10-19 07:43:07 +02:00
|
|
|
/**
|
2018-04-27 07:44:47 +02:00
|
|
|
* Set flags for enabled probes
|
2017-10-19 07:43:07 +02:00
|
|
|
*/
|
2020-03-08 05:20:41 +01:00
|
|
|
#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
|
|
|
|
|
2020-05-12 06:25:39 +02:00
|
|
|
#if ANY(HAS_BED_PROBE, PROBE_MANUALLY, MESH_BED_LEVELING)
|
2020-03-08 05:20:41 +01:00
|
|
|
#define PROBE_SELECTED 1
|
|
|
|
#endif
|
2016-09-19 06:28:11 +02:00
|
|
|
|
2018-11-05 07:20:13 +01:00
|
|
|
#if HAS_BED_PROBE
|
2020-03-08 05:20:41 +01:00
|
|
|
#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
|
2020-04-17 16:02:21 +02:00
|
|
|
#if Z_HOME_DIR < 0 && (!HAS_CUSTOM_PROBE_PIN || ENABLED(USE_PROBE_FOR_Z_HOMING))
|
2020-03-08 05:20:41 +01:00
|
|
|
#define HOMING_Z_WITH_PROBE 1
|
|
|
|
#endif
|
2018-11-05 07:20:13 +01:00
|
|
|
#ifndef Z_PROBE_LOW_POINT
|
|
|
|
#define Z_PROBE_LOW_POINT -5
|
|
|
|
#endif
|
|
|
|
#if ENABLED(Z_PROBE_ALLEN_KEY)
|
2020-03-08 05:20:41 +01:00
|
|
|
#define PROBE_TRIGGERED_WHEN_STOWED_TEST 1 // Extra test for Allen Key Probe
|
2018-11-05 07:20:13 +01:00
|
|
|
#endif
|
2020-03-08 05:20:41 +01:00
|
|
|
#if MULTIPLE_PROBING > 1
|
2020-05-10 11:40:19 +02:00
|
|
|
#if EXTRA_PROBING > 0
|
2019-06-22 02:02:26 +02:00
|
|
|
#define TOTAL_PROBING (MULTIPLE_PROBING + EXTRA_PROBING)
|
|
|
|
#else
|
|
|
|
#define TOTAL_PROBING MULTIPLE_PROBING
|
|
|
|
#endif
|
|
|
|
#endif
|
2018-11-05 07:20:13 +01:00
|
|
|
#else
|
2018-04-27 07:44:47 +02:00
|
|
|
// Clear probe pin settings when no probe is selected
|
2017-10-19 07:43:07 +02:00
|
|
|
#undef Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN
|
|
|
|
#endif
|
|
|
|
|
2020-03-14 05:18:16 +01:00
|
|
|
/**
|
|
|
|
* 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 RESTORE_LEVELING_AFTER_G28
|
|
|
|
#endif
|
|
|
|
|
2018-11-03 08:13:10 +01:00
|
|
|
#ifdef GRID_MAX_POINTS_X
|
|
|
|
#define GRID_MAX_POINTS ((GRID_MAX_POINTS_X) * (GRID_MAX_POINTS_Y))
|
2020-03-14 05:18:16 +01:00
|
|
|
#define GRID_LOOP(A,B) LOOP_L_N(A, GRID_MAX_POINTS_X) LOOP_L_N(B, GRID_MAX_POINTS_Y)
|
2018-11-03 08:13:10 +01:00
|
|
|
#endif
|
|
|
|
|
2019-02-03 08:29:00 +01:00
|
|
|
#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
|
2019-02-12 22:55:47 +01:00
|
|
|
|
2019-04-11 00:14:57 +02:00
|
|
|
#if ENABLED(SLIM_LCD_MENUS)
|
|
|
|
#define BOOT_MARLIN_LOGO_SMALL
|
|
|
|
#endif
|
2019-04-20 03:11:51 +02:00
|
|
|
|
2020-02-29 11:14:40 +01:00
|
|
|
// This flag indicates some kind of jerk storage is needed
|
2020-05-12 06:25:39 +02:00
|
|
|
#if EITHER(CLASSIC_JERK, IS_KINEMATIC)
|
2020-03-08 05:20:41 +01:00
|
|
|
#define HAS_CLASSIC_JERK 1
|
|
|
|
#endif
|
2020-02-29 11:14:40 +01:00
|
|
|
|
2020-04-24 03:49:11 +02:00
|
|
|
#if DISABLED(CLASSIC_JERK)
|
|
|
|
#define HAS_JUNCTION_DEVIATION 1
|
|
|
|
#endif
|
|
|
|
|
2020-02-29 11:14:40 +01:00
|
|
|
// E jerk exists with JD disabled (of course) but also when Linear Advance is disabled on Delta/SCARA
|
2020-03-08 05:20:41 +01:00
|
|
|
#if ENABLED(CLASSIC_JERK) || (IS_KINEMATIC && DISABLED(LIN_ADVANCE))
|
|
|
|
#define HAS_CLASSIC_E_JERK 1
|
|
|
|
#endif
|
2019-10-10 02:44:49 +02:00
|
|
|
|
|
|
|
#ifndef SPI_SPEED
|
|
|
|
#define SPI_SPEED SPI_FULL_SPEED
|
|
|
|
#endif
|
2020-02-29 11:14:40 +01:00
|
|
|
|
2020-03-23 23:55:21 +01:00
|
|
|
#if SERIAL_PORT == -1 || SERIAL_PORT_2 == -1
|
|
|
|
#define HAS_USB_SERIAL 1
|
|
|
|
#endif
|
|
|
|
|
2020-02-29 11:14:40 +01:00
|
|
|
/**
|
|
|
|
* 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
|
2020-10-12 23:38:07 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* 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_WIDTH 480
|
|
|
|
#define TFT_HEIGHT 320
|
|
|
|
#define TFT_INTERFACE_SPI
|
|
|
|
#define GRAPHICAL_TFT_UPSCALE 3
|
|
|
|
#elif ENABLED(MKS_ROBIN_TFT24)
|
|
|
|
// Most common: ST7789
|
|
|
|
#define TFT_DEFAULT_ORIENTATION (TFT_EXCHANGE_XY | TFT_INVERT_Y)
|
|
|
|
#define TFT_WIDTH 320
|
|
|
|
#define TFT_HEIGHT 240
|
|
|
|
#define TFT_INTERFACE_FSMC
|
|
|
|
#define GRAPHICAL_TFT_UPSCALE 2
|
|
|
|
#elif ENABLED(MKS_ROBIN_TFT28)
|
|
|
|
// Most common: ST7789
|
|
|
|
#define TFT_DEFAULT_ORIENTATION (TFT_EXCHANGE_XY | TFT_INVERT_Y)
|
|
|
|
#define TFT_WIDTH 320
|
|
|
|
#define TFT_HEIGHT 240
|
|
|
|
#define TFT_INTERFACE_FSMC
|
|
|
|
#define GRAPHICAL_TFT_UPSCALE 2
|
|
|
|
#elif ENABLED(MKS_ROBIN_TFT32)
|
|
|
|
// Most common: ST7789
|
|
|
|
#define TFT_DEFAULT_ORIENTATION (TFT_EXCHANGE_XY | TFT_INVERT_Y)
|
|
|
|
#define TFT_WIDTH 320
|
|
|
|
#define TFT_HEIGHT 240
|
|
|
|
#define TFT_INTERFACE_FSMC
|
|
|
|
#define GRAPHICAL_TFT_UPSCALE 2
|
|
|
|
#elif ENABLED(MKS_ROBIN_TFT35)
|
|
|
|
// Most common: ILI9488
|
|
|
|
#define TFT_DEFAULT_ORIENTATION (TFT_EXCHANGE_XY | TFT_INVERT_X | TFT_INVERT_Y)
|
|
|
|
#define TFT_WIDTH 480
|
|
|
|
#define TFT_HEIGHT 320
|
|
|
|
#define TFT_INTERFACE_FSMC
|
|
|
|
#define GRAPHICAL_TFT_UPSCALE 3
|
|
|
|
#elif ENABLED(MKS_ROBIN_TFT43)
|
|
|
|
#define TFT_DEFAULT_ORIENTATION 0
|
|
|
|
#define TFT_DRIVER SSD1963
|
|
|
|
#define TFT_WIDTH 480
|
|
|
|
#define TFT_HEIGHT 272
|
|
|
|
#define TFT_INTERFACE_FSMC
|
|
|
|
#define GRAPHICAL_TFT_UPSCALE 2
|
|
|
|
#elif ENABLED(MKS_ROBIN_TFT_V1_1R)
|
|
|
|
// ILI9328 or R61505
|
|
|
|
#define TFT_DEFAULT_ORIENTATION (TFT_INVERT_X | TFT_INVERT_Y | TFT_EXCHANGE_XY)
|
|
|
|
#define TFT_WIDTH 320
|
|
|
|
#define TFT_HEIGHT 240
|
|
|
|
#define TFT_INTERFACE_FSMC
|
|
|
|
#define GRAPHICAL_TFT_UPSCALE 2
|
|
|
|
#elif EITHER(TFT_TRONXY_X5SA, ANYCUBIC_TFT35)
|
|
|
|
#define TFT_DEFAULT_ORIENTATION (TFT_EXCHANGE_XY | TFT_INVERT_X | TFT_INVERT_Y)
|
|
|
|
#define TFT_DRIVER ILI9488
|
|
|
|
#define TFT_WIDTH 480
|
|
|
|
#define TFT_HEIGHT 320
|
|
|
|
#define TFT_INTERFACE_FSMC
|
|
|
|
#define GRAPHICAL_TFT_UPSCALE 3
|
|
|
|
#elif ENABLED(LONGER_LK_TFT28)
|
|
|
|
#define TFT_DEFAULT_ORIENTATION (TFT_EXCHANGE_XY | TFT_INVERT_X | TFT_INVERT_Y)
|
|
|
|
#define TFT_WIDTH 320
|
|
|
|
#define TFT_HEIGHT 240
|
|
|
|
#define TFT_INTERFACE_FSMC
|
|
|
|
#define GRAPHICAL_TFT_UPSCALE 2
|
|
|
|
#elif ENABLED(TFT_GENERIC)
|
|
|
|
#define TFT_DEFAULT_ORIENTATION (TFT_EXCHANGE_XY | TFT_INVERT_X | TFT_INVERT_Y)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// FSMC/SPI TFT Panels using standard HAL/tft/tft_(fsmc|spi).h
|
|
|
|
#if ENABLED(TFT_INTERFACE_FSMC)
|
|
|
|
#define HAS_FSMC_TFT 1
|
|
|
|
#if ENABLED(TFT_CLASSIC_UI)
|
|
|
|
#define FSMC_GRAPHICAL_TFT
|
|
|
|
#elif ENABLED(TFT_LVGL_UI)
|
|
|
|
#define TFT_LVGL_UI_FSMC
|
|
|
|
#endif
|
|
|
|
#elif ENABLED(TFT_INTERFACE_SPI)
|
|
|
|
#define HAS_SPI_TFT 1
|
|
|
|
#if ENABLED(TFT_CLASSIC_UI)
|
|
|
|
#define SPI_GRAPHICAL_TFT
|
|
|
|
#elif ENABLED(TFT_LVGL_UI)
|
|
|
|
#define TFT_LVGL_UI_SPI
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if ENABLED(TFT_COLOR_UI) && TFT_HEIGHT == 240
|
|
|
|
#if ENABLED(TFT_INTERFACE_SPI)
|
|
|
|
#define TFT_320x240_SPI
|
|
|
|
#elif ENABLED(TFT_INTERFACE_FSMC)
|
|
|
|
#define TFT_320x240
|
|
|
|
#endif
|
|
|
|
#elif ENABLED(TFT_COLOR_UI) && TFT_HEIGHT == 320
|
|
|
|
#if ENABLED(TFT_INTERFACE_SPI)
|
|
|
|
#define TFT_480x320_SPI
|
|
|
|
#elif ENABLED(TFT_INTERFACE_FSMC)
|
|
|
|
#define TFT_480x320
|
|
|
|
#endif
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Fewer lines with touch buttons on-screen
|
|
|
|
#if EITHER(TFT_320x240, TFT_320x240_SPI)
|
|
|
|
#define HAS_UI_320x240 1
|
|
|
|
#define LCD_HEIGHT TERN(TOUCH_SCREEN, 6, 7)
|
|
|
|
#elif EITHER(TFT_480x320, TFT_480x320_SPI)
|
|
|
|
#define HAS_UI_480x320 1
|
|
|
|
#define LCD_HEIGHT TERN(TOUCH_SCREEN, 6, 7)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// This emulated DOGM has 'touch/xpt2046', not 'tft/xpt2046'
|
|
|
|
#if ENABLED(TOUCH_SCREEN) && !HAS_GRAPHICAL_TFT
|
|
|
|
#undef TOUCH_SCREEN
|
|
|
|
#undef TOUCH_SCREEN_CALIBRATION
|
|
|
|
#define HAS_TOUCH_XPT2046 1
|
|
|
|
#endif
|