source: rtems/c/src/lib/libbsp/arm/csb337/include/sed1356.h @ 7b25525

4.104.115
Last change on this file since 7b25525 was 7b25525, checked in by Joel Sherrill <joel.sherrill@…>, on 11/30/09 at 22:00:36

2009-11-30 Fernando Nicodemos <fgnicodemos@…>

  • Makefile.am, preinstall.am, console/fbcons.c, console/font8x16.h, console/sed1356.c, console/uarts.c, include/sed1356.h, startup/bspstart.c, startup/linkcmds.csb337, startup/linkcmds.csb637, startup/memmap.c, startup/umonsupp.c: Update to match development version.
  • Property mode set to 100644
File size: 742 bytes
Line 
1/*
2 * Public Interface for SED Video Controller Operations
3 *
4 *  COPYRIGHT (c) 1989-2009.
5 *  On-Line Applications Research Corporation (OAR).
6 *
7 *  Modified by Fernando Nicodemos <fgnicodemos@terra.com.br>
8 *  from NCB - Sistemas Embarcados Ltda. (Brazil)
9 *
10 *  The license and distribution terms for this file may be
11 *  found in the file LICENSE in this distribution or at
12 *  http://www.rtems.com/license/LICENSE.
13 *
14 *  $Id$
15 */
16
17#ifndef __SED1356_h
18#define __SED1356_h
19
20void sed_init(void);
21
22int sed_frame_buffer_size(void);
23
24void sed_clr_row(int char_row);
25
26void sed_putchar(char c);
27
28void sed_putstring(char *s);
29
30void sed_clearscreen(void);
31
32void sed_write_frame_buffer(
33  uint32_t i,
34  uint16_t wr16
35);
36
37#endif
38/* end of file */
Note: See TracBrowser for help on using the repository browser.