wdenk | 5a8c51c | 2004-04-15 21:16:42 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2004 |
| 3 | * |
| 4 | * Pantelis Antoniou <panto@intracom.gr> |
| 5 | * Intracom S.A. |
| 6 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 7 | * SPDX-License-Identifier: GPL-2.0+ |
wdenk | 5a8c51c | 2004-04-15 21:16:42 +0000 | [diff] [blame] | 8 | */ |
| 9 | |
| 10 | /* Video support for Epson SED156x chipset(s) */ |
| 11 | |
| 12 | #ifndef SED156X_H |
| 13 | #define SED156X_H |
| 14 | |
| 15 | void sed156x_init(void); |
| 16 | void sed156x_clear(void); |
| 17 | void sed156x_output_at(int x, int y, const char *str, int size); |
| 18 | void sed156x_reverse_at(int x, int y, int size); |
| 19 | void sed156x_sync(void); |
| 20 | void sed156x_scroll(int dx, int dy); |
| 21 | |
| 22 | /* export display */ |
| 23 | extern const int sed156x_text_width; |
| 24 | extern const int sed156x_text_height; |
| 25 | |
| 26 | #endif /* SED156X_H */ |