2018-04-13 01:14:01 +00:00
|
|
|
/**
|
|
|
|
* @file lcdprint_u8g.c
|
|
|
|
* @brief LCD print api for u8glib
|
|
|
|
* @author Yunhui Fu (yhfudev@gmail.com)
|
|
|
|
* @version 1.0
|
|
|
|
* @date 2016-08-19
|
|
|
|
* @copyright GPL/BSD
|
|
|
|
*/
|
|
|
|
|
2018-10-23 21:00:34 +00:00
|
|
|
#include "../../inc/MarlinConfigPre.h"
|
2018-04-13 01:14:01 +00:00
|
|
|
|
2018-05-14 10:35:05 +00:00
|
|
|
#if ENABLED(DOGLCD)
|
2018-04-13 01:14:01 +00:00
|
|
|
|
|
|
|
#include <U8glib.h>
|
|
|
|
extern U8GLIB *pu8g;
|
|
|
|
#define _lcd_write(a) pu8g->print(a)
|
|
|
|
#define _lcd_setcursor(col, row) pu8g->setPrintPos((col), (row));
|
|
|
|
|
2018-10-23 21:00:34 +00:00
|
|
|
#include "../ultralcd.h"
|
|
|
|
#include "../../Marlin.h"
|
2018-04-13 01:14:01 +00:00
|
|
|
|
2018-10-23 21:00:34 +00:00
|
|
|
#include "../fontutils.h"
|
2018-04-13 01:14:01 +00:00
|
|
|
#include "u8g_fontutf8.h"
|
2018-10-23 21:00:34 +00:00
|
|
|
#include "../lcdprint.h"
|
2018-04-13 01:14:01 +00:00
|
|
|
|
|
|
|
int lcd_glyph_height(void) {
|
|
|
|
return u8g_GetFontBBXHeight(pu8g->getU8g());
|
|
|
|
}
|
|
|
|
|
|
|
|
void lcd_moveto(int col, int row) {
|
|
|
|
_lcd_setcursor(col, row);
|
|
|
|
}
|
|
|
|
|
2018-05-26 04:32:37 +00:00
|
|
|
// return < 0 on error
|
|
|
|
// return the advanced pixels
|
2018-04-13 01:14:01 +00:00
|
|
|
int lcd_put_wchar_max(wchar_t c, pixel_len_t max_length) {
|
|
|
|
if (c < 256) {
|
|
|
|
_lcd_write((char)c);
|
|
|
|
return u8g_GetFontBBXWidth(pu8g->getU8g());
|
|
|
|
}
|
|
|
|
unsigned int x = pu8g->getPrintCol(),
|
|
|
|
y = pu8g->getPrintRow(),
|
|
|
|
ret = uxg_DrawWchar(pu8g->getU8g(), x, y, c, max_length);
|
|
|
|
pu8g->setPrintPos(x + ret, y);
|
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
int lcd_put_u8str_max(const char * utf8_str, pixel_len_t max_length) {
|
|
|
|
unsigned int x = pu8g->getPrintCol(),
|
|
|
|
y = pu8g->getPrintRow(),
|
|
|
|
ret = uxg_DrawUtf8Str(pu8g->getU8g(), x, y, utf8_str, max_length);
|
|
|
|
pu8g->setPrintPos(x + ret, y);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2018-10-01 04:44:33 +00:00
|
|
|
int lcd_put_u8str_max_P(PGM_P utf8_str_P, pixel_len_t max_length) {
|
2018-04-13 01:14:01 +00:00
|
|
|
unsigned int x = pu8g->getPrintCol(),
|
|
|
|
y = pu8g->getPrintRow(),
|
|
|
|
ret = uxg_DrawUtf8StrP(pu8g->getU8g(), x, y, utf8_str_P, max_length);
|
|
|
|
pu8g->setPrintPos(x + ret, y);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2018-05-26 04:32:37 +00:00
|
|
|
#endif // DOGLCD
|