Commit 9d0d0eb0 authored by MagoKimbra's avatar MagoKimbra

Fix

parent 636c8542
...@@ -2347,7 +2347,23 @@ ...@@ -2347,7 +2347,23 @@
#undef SDSS #undef SDSS
#define SDSS 10 #define SDSS 10
#define SDCARDDETECT 14 #define SDCARDDETECT 14
#elif ENABLED(REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER)
#define LCD_PINS_RS 46
#define LCD_PINS_ENABLE 47
#define LCD_PINS_D4 44
#define BEEPER_PIN 41
#define BTN_EN1 50
#define BTN_EN2 52
#define BTN_ENC 48
#if UI_VOLTAGE_LEVEL != 1
#undef UI_VOLTAGE_LEVEL
#define UI_VOLTAGE_LEVEL 1
#endif
#elif ENABLED(SSD1306_OLED_I2C_CONTROLLER) #elif ENABLED(SSD1306_OLED_I2C_CONTROLLER)
#define BTN_EN1 50 #define BTN_EN1 50
#define BTN_EN2 52 #define BTN_EN2 52
......
#include "../base.h" #include "../base.h"
#include "../Marlin_main.h" #include "../Marlin_main.h"
#include "../configuration_store.h" #include "../Configuration_Store.h"
#if ENABLED(ULTRA_LCD) #if ENABLED(ULTRA_LCD)
...@@ -2452,7 +2452,7 @@ char* ftostr52(const float& x) { ...@@ -2452,7 +2452,7 @@ char* ftostr52(const float& x) {
return conv; return conv;
} }
#if DISABLED(DELTA) && DISABLED(Z_SAFE_HOMING) && Z_HOME_DIR < 0 #if !MECH(DELTA) && DISABLED(Z_SAFE_HOMING) && Z_HOME_DIR < 0
static void lcd_level_bed() { static void lcd_level_bed() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment