diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2018-01-06 13:38:34 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2018-01-06 13:38:34 -0500 |
commit | 67243b6d986179da11fc1d364606d8e1653688ff (patch) | |
tree | deb5387a2d01b6a5863f1349750fa9b97d77ed75 /include | |
parent | e5ae7f10f3e144f4a08ee7a66b4105a5aa86e6e7 (diff) |
SVC calls
Diffstat (limited to 'include')
-rw-r--r-- | include/lcd.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/lcd.h b/include/lcd.h index 0962e08..441d463 100644 --- a/include/lcd.h +++ b/include/lcd.h @@ -3,6 +3,9 @@ #include <stdint.h> +/** + * Direct access + */ void lcd_init(void); void lcd_puts(const char *s); @@ -11,4 +14,10 @@ void lcd_puth(int h); void lcd_putb(uint8_t b); void lcd_clear(void); +/** + * Buffered/async access + */ +void lcd_handler(void); +void lcd_put(const char *s); + #endif // LCD_H_ |