Explorar el Código

Fix RRW graphical LCD constructor macro (#11171)

teemuatlut hace 7 años
padre
commit
3de0c85d41
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      Marlin/src/lcd/ultralcd_impl_DOGM.h

+ 1
- 1
Marlin/src/lcd/ultralcd_impl_DOGM.h Ver fichero

@@ -120,7 +120,7 @@
120 120
 
121 121
 // LCD selection
122 122
 #if ENABLED(REPRAPWORLD_GRAPHICAL_LCD)
123
-  #ifdef DISABLED(SDSUPPORT) && (LCD_PINS_D4 == SCK_PIN) && (LCD_PINS_ENABLE == MOSI_PIN)
123
+  #if DISABLED(SDSUPPORT) && (LCD_PINS_D4 == SCK_PIN) && (LCD_PINS_ENABLE == MOSI_PIN)
124 124
     U8GLIB_ST7920_128X64_4X u8g(LCD_PINS_RS); // 2 stripes, HW SPI (shared with SD card)
125 125
   #else
126 126
     U8GLIB_ST7920_128X64_4X u8g(LCD_PINS_D4, LCD_PINS_ENABLE, LCD_PINS_RS); // Original u8glib device. 2 stripes, SW SPI

Loading…
Cancelar
Guardar