source: rtems/cpukit/include/rtems/bspIo.h @ 34fd745

4.104.114.84.95
Last change on this file since 34fd745 was 34fd745, checked in by Joel Sherrill <joel.sherrill@…>, on 04/08/02 at 18:27:53

2002-04-06 Ralf Corsepius <corsepiu@…>

  • include/rtems/bspIo.h: Fix cpp-guards, remove references to i386.
  • Property mode set to 100644
File size: 1.2 KB
RevLine 
[1bce637]1/* bspIo.h
2 *
3 *  This include file contains declaration of interface that
4 *  will be provided by the file contained in this directory.
5 *
6 *  COPYRIGHT (c) 1998 valette@crf.canon.fr
7 *
8 *  The license and distribution terms for this file may be
9 *  found in found in the file LICENSE in this distribution or at
10 *  http://www.OARcorp.com/rtems/license.html.
11 *
12 *  $Id$
13 */
[34fd745]14#ifndef _rtems_bspIo_h
15#define _rtems_bspIo_h
[1bce637]16
17/*
18 * All the functions declared as extern after this comment
19 * MUST be implemented in each BSP. Using this function,
20 * this directory contains shared code that export higher level
21 * functionnality described after the next command.
22 */
23typedef void    (*BSP_output_char_function_type)        (char c);
24typedef char    (*BSP_polling_getchar_function_type)    (void);
25
26extern  BSP_output_char_function_type           BSP_output_char;
27extern  BSP_polling_getchar_function_type       BSP_poll_char;
[34fd745]28
[1bce637]29/*
30 * All the function declared as extern after this comment
[34fd745]31 * are available for each BSP by compiling and linking
[1bce637]32 * the files contained in this directory PROVIDED definition
33 * and initialisation of the previous variable are done.
34 */
[34fd745]35extern void printk(char *fmt, ...);
[1bce637]36
37#endif
Note: See TracBrowser for help on using the repository browser.