Browse Source

🐛 Fix FTDI_EVE_TOUCH_UI reboot loop (#24195)

Marcio T 2 years ago
parent
commit
00075990d0
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/src/lcd/buttons.h

+ 1
- 1
Marlin/src/lcd/buttons.h View File

@@ -26,7 +26,7 @@
26 26
 #if ((!HAS_ADC_BUTTONS && IS_NEWPANEL) || BUTTONS_EXIST(EN1, EN2)) && !IS_TFTGLCD_PANEL
27 27
   #define HAS_ENCODER_WHEEL 1
28 28
 #endif
29
-#if HAS_ENCODER_WHEEL || ANY_BUTTON(ENC, BACK, UP, DWN, LFT, RT)
29
+#if (HAS_ENCODER_WHEEL || ANY_BUTTON(ENC, BACK, UP, DWN, LFT, RT)) && DISABLED(TOUCH_UI_FTDI_EVE)
30 30
   #define HAS_DIGITAL_BUTTONS 1
31 31
 #endif
32 32
 #if !HAS_ADC_BUTTONS && (IS_RRW_KEYPAD || (HAS_WIRED_LCD && !IS_NEWPANEL))

Loading…
Cancel
Save