Merge pull request #2181 from leptun/MK3_fix_lcd_warning

Mk3 fix lcd warning
This commit is contained in:
DRracer 2019-09-10 14:07:28 +02:00 committed by GitHub
commit 90f85f7128
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,9 +189,10 @@ static void lcd_begin(uint8_t clear)
#endif
}
static void lcd_putchar(char c, FILE *)
static int lcd_putchar(char c, FILE *)
{
lcd_write(c);
return 0;
}
void lcd_init(void)

View file

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