mirror of
https://github.com/fail0verflow/mini.git
synced 2024-11-05 11:15:07 +01:00
12 lines
207 B
C
12 lines
207 B
C
|
#ifndef __LCD_H__
|
||
|
#define __LCD_H__
|
||
|
|
||
|
#include "types.h"
|
||
|
|
||
|
void lcd_init(void);
|
||
|
int lcd_putchar(int c);
|
||
|
int lcd_puts(const char *s);
|
||
|
void lcd_setdelay(u32 delay);
|
||
|
int lcd_printf( const char *fmt, ...);
|
||
|
#endif
|