Marlin 2.0 with 12864WZ-10 LCD? December 05, 2018 05:31PM |
Registered: 4 years ago Posts: 5 |
Re: Marlin 2.0 with 12864WZ-10 LCD? December 06, 2018 03:08PM |
Registered: 4 years ago Posts: 5 |
Sketch/src/lcd/dogm/lcdprint_u8g.cpp: In function 'int lcd_put_wchar_max(uint32_t, pixel_len_t)': sketch/src/lcd/dogm/lcdprint_u8g.cpp:36:24: error: 'class U8GLIB_ST7920_128X64_RRD' has no member named 'getPrintCol' unsigned int x = u8g.getPrintCol(), ^ sketch/src/lcd/dogm/lcdprint_u8g.cpp:39:23: error: 'ret' was not declared in this scope u8g.setPrintPos(x + ret, y); ^ sketch/src/lcd/dogm/lcdprint_u8g.cpp:39:28: error: 'y' was not declared in this scope u8g.setPrintPos(x + ret, y); ^ sketch/src/lcd/dogm/lcdprint_u8g.cpp: In function 'int lcd_put_u8str_max(const char*, pixel_len_t)': sketch/src/lcd/dogm/lcdprint_u8g.cpp:45:24: error: 'class U8GLIB_ST7920_128X64_RRD' has no member named 'getPrintCol' unsigned int x = u8g.getPrintCol(), ^ sketch/src/lcd/dogm/lcdprint_u8g.cpp:48:23: error: 'ret' was not declared in this scope u8g.setPrintPos(x + ret, y); ^ sketch/src/lcd/dogm/lcdprint_u8g.cpp:48:28: error: 'y' was not declared in this scope u8g.setPrintPos(x + ret, y); ^ sketch/src/lcd/dogm/lcdprint_u8g.cpp: In function 'int lcd_put_u8str_max_P(const char*, pixel_len_t)': sketch/src/lcd/dogm/lcdprint_u8g.cpp:53:24: error: 'class U8GLIB_ST7920_128X64_RRD' has no member named 'getPrintCol' unsigned int x = u8g.getPrintCol(), ^ sketch/src/lcd/dogm/lcdprint_u8g.cpp:56:23: error: 'ret' was not declared in this scope u8g.setPrintPos(x + ret, y); ^ sketch/src/lcd/dogm/lcdprint_u8g.cpp:56:28: error: 'y' was not declared in this scope u8g.setPrintPos(x + ret, y); ^ exit status 1 Error compiling for board FYSETC_F6.This only happens when I enable REPRAP LCD
#define REPRAP_DISCOUNT_FULL_GRAPHIC_SMART_CONTROLLER
Re: Marlin 2.0 with 12864WZ-10 LCD? December 07, 2018 09:37AM |
Registered: 4 years ago Posts: 5 |