diff options
| author | tslil clingman <tslil@posteo.de> | 2021-01-31 15:33:30 -0500 |
|---|---|---|
| committer | tslil <tslil@posteo.de> | 2026-08-28 19:37:41 +0100 |
| commit | 399d90f1b94717aa0ca5abb1dc43bdb6f4160d13 (patch) | |
| tree | 21c954622a23fa606dacfe85552df92f6f195903 /include/lcdlib.h | |
| parent | 84ad2e3c12cb505e3c5e3dd29d05edb529b82174 (diff) | |
Fairly important bug fixes to lcdlib, LCD now echoes input!
Input polling without line-buffering is done using ncurses, so the
buildroot configuration had to change accordingly to include that
library.
The Makefile changed to accommodate stand-alone building of ct1986 and
to include -lcurses where appropriate. There were also some typos
about copying ct1986 and ctaklm to the correct directories.
Diffstat (limited to 'include/lcdlib.h')
| -rw-r--r-- | include/lcdlib.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/lcdlib.h b/include/lcdlib.h index 192b3a4..b1cfc87 100644 --- a/include/lcdlib.h +++ b/include/lcdlib.h @@ -37,6 +37,9 @@ int lcd_begin(void); void lcd_end(void); void lcd_clear(void); +void lcd_set_blink(void); +void lcd_stop_blink(void); + void lcd_put_line(const enum LCD_WRITE_MODE mode, const char *line); void lcd_printf_line(const enum LCD_WRITE_MODE mode, |
