Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use u8g int type for screen coordinates #14965

Merged
merged 4 commits into from
Aug 18, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix lcd_moveto for Non Graphical LCD
robbycandra committed Aug 17, 2019
commit f8145d9013249602bb681e826fcd49dfae87c32b
6 changes: 5 additions & 1 deletion Marlin/src/lcd/lcdprint.h
Original file line number Diff line number Diff line change
@@ -48,7 +48,11 @@ int lcd_put_u8str_max(const char * utf8_str, pixel_len_t max_length);
*/
int lcd_put_u8str_max_P(PGM_P utf8_str_P, pixel_len_t max_length);

void lcd_moveto(const u8g_uint_t col, const u8g_uint_t row);
#if HAS_GRAPHICAL_LCD
void lcd_moveto(const u8g_uint_t col, const u8g_uint_t row);
#else
void lcd_moveto(const u_int8_t col, const u_int8_t row);
#endif

void lcd_put_int(const int i);