MKS_12864_OLED code cleanup
This commit is contained in:
parent
b826bf4194
commit
64c493ad82
|
@ -301,9 +301,9 @@ static void lcd_implementation_init() {
|
|||
|
||||
#if ENABLED(MKS_12864OLED) || ENABLED(MKS_12864OLED_SSD1306)
|
||||
SET_OUTPUT(LCD_PINS_DC);
|
||||
OUT_WRITE(LCD_PINS_RS, LOW);
|
||||
_delay_ms(500);
|
||||
WRITE(LCD_PINS_RS, HIGH);
|
||||
#if !defined(LCD_RESET_PIN)
|
||||
#define LCD_RESET_PIN LCD_PINS_RS
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#if PIN_EXISTS(LCD_RESET)
|
||||
|
@ -313,7 +313,7 @@ static void lcd_implementation_init() {
|
|||
_delay_ms(5); // delay to allow the display to initalize
|
||||
#endif
|
||||
|
||||
#if PIN_EXISTS(LCD_RESET) || ENABLED(MKS_12864OLED) || ENABLED(MKS_12864OLED_SSD1306)
|
||||
#if PIN_EXISTS(LCD_RESET)
|
||||
u8g.begin();
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Reference in a new issue