Merge pull request #2012 from leptun/MK3_LCD_improvements

LCD fix status screen lcd_putchar
This commit is contained in:
DRracer 2019-07-17 08:05:56 +02:00 committed by GitHub
commit eb705b6b17
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -189,10 +189,9 @@ static void lcd_begin(uint8_t clear)
#endif
}
static int lcd_putchar(char c, FILE *)
static void lcd_putchar(char c, FILE *)
{
lcd_write(c);
return c;
}
void lcd_init(void)

View File

@ -11,6 +11,7 @@
extern FILE _lcdout;
#define lcdout (&_lcdout)
extern void lcd_putchar(char c, FILE *stream);
extern void lcd_init(void);