sed156x.h 566 B

1234567891011121314151617181920212223242526
  1. /*
  2. * (C) Copyright 2004
  3. *
  4. * Pantelis Antoniou <panto@intracom.gr>
  5. * Intracom S.A.
  6. *
  7. * SPDX-License-Identifier: GPL-2.0+
  8. */
  9. /* Video support for Epson SED156x chipset(s) */
  10. #ifndef SED156X_H
  11. #define SED156X_H
  12. void sed156x_init(void);
  13. void sed156x_clear(void);
  14. void sed156x_output_at(int x, int y, const char *str, int size);
  15. void sed156x_reverse_at(int x, int y, int size);
  16. void sed156x_sync(void);
  17. void sed156x_scroll(int dx, int dy);
  18. /* export display */
  19. extern const int sed156x_text_width;
  20. extern const int sed156x_text_height;
  21. #endif /* SED156X_H */