Skip to content

Commit 9a1ec7a

Browse files
marciotLCh-77
authored andcommittedMay 28, 2022
🐛 Fix FTDI_EVE_TOUCH_UI reboot loop (MarlinFirmware#24195)
1 parent a51d1be commit 9a1ec7a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎Marlin/src/lcd/buttons.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
#if ((!HAS_ADC_BUTTONS && IS_NEWPANEL) || BUTTONS_EXIST(EN1, EN2)) && !IS_TFTGLCD_PANEL
2727
#define HAS_ENCODER_WHEEL 1
2828
#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)
3030
#define HAS_DIGITAL_BUTTONS 1
3131
#endif
3232
#if !HAS_ADC_BUTTONS && (IS_RRW_KEYPAD || (HAS_WIRED_LCD && !IS_NEWPANEL))

0 commit comments

Comments
 (0)
Please sign in to comment.