Skip to content

update LCD_PINS_ENABLE to LCD_PINS_EN in pins_RP2040.h #27700

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Marlin/src/pins/rp2040/pins_RP2040.h
Original file line number Diff line number Diff line change
Expand Up @@ -320,13 +320,13 @@
#if ENABLED(REPRAPWORLD_GRAPHICAL_LCD)

#define LCD_PINS_RS 49 // CS chip select /SS chip slave select
#define LCD_PINS_ENABLE 51 // SID (MOSI)
#define LCD_PINS_EN 51 // SID (MOSI)
#define LCD_PINS_D4 52 // SCK (CLK) clock

#elif ALL(IS_NEWPANEL, PANEL_ONE)

#define LCD_PINS_RS 40
#define LCD_PINS_ENABLE 42
#define LCD_PINS_EN 42
#define LCD_PINS_D4 65
#define LCD_PINS_D5 66
#define LCD_PINS_D6 44
Expand All @@ -337,7 +337,7 @@
#if ENABLED(CR10_STOCKDISPLAY)

#define LCD_PINS_RS 27
#define LCD_PINS_ENABLE 29
#define LCD_PINS_EN 29
#define LCD_PINS_D4 25

#if !IS_NEWPANEL
Expand All @@ -347,7 +347,7 @@
#elif ENABLED(ZONESTAR_LCD)

#define LCD_PINS_RS 64
#define LCD_PINS_ENABLE 44
#define LCD_PINS_EN 44
#define LCD_PINS_D4 63
#define LCD_PINS_D5 40
#define LCD_PINS_D6 42
Expand All @@ -365,7 +365,7 @@
#define DOGLCD_A0 LCD_PINS_DC
#else
#define LCD_PINS_RS 16
#define LCD_PINS_ENABLE 17
#define LCD_PINS_EN 17
#define LCD_PINS_D4 23
#define LCD_PINS_D5 25
#define LCD_PINS_D6 27
Expand Down
Loading