summaryrefslogtreecommitdiffstats
path: root/src/target/firmware/include/display/st7558.h
blob: efed064caa44df1f9de6b381516dc0c0f0405977 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef _ST7558_H
#define _ST7558_H

enum display_attr {
	DISP_ATTR_INVERT	= 0x0001,
};

void st7558_init(void);
void st7558_set_attr(unsigned long attr);
void st7558_unset_attr(unsigned long attr);
void st7558_clrscr(void);
void st7558_putchar(unsigned char c);
void st7558_puts(const char *str);

#endif