source: rtems/c/src/lib/libbsp/shared/dummy_printk_support.c @ 49c8f45

4.104.115
Last change on this file since 49c8f45 was 4b257190, checked in by Joel Sherrill <joel.sherrill@…>, on 04/02/07 at 11:15:58

2007-04-02 Joel Sherrill <joel@…>

  • dummy_printk_support.c: New file.
  • Property mode set to 100644
File size: 705 bytes
Line 
1/*
2 *  This file contains a stub for the required printk support.
3 *  It is NOT functional!!!
4 *
5 *  This driver uses the termios pseudo driver.
6 *
7 *  COPYRIGHT (c) 1989-2007.
8 *  On-Line Applications Research Corporation (OAR).
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/*
18 *  To support printk
19 */
20
21#include <rtems.h>
22#include <rtems/bspIo.h>
23
24void BSP_output_char_f(char c)
25{
26  /* the character just needs to disappear */
27}
28
29BSP_output_char_function_type           BSP_output_char = BSP_output_char_f;
30BSP_polling_getchar_function_type       BSP_poll_char = NULL;
Note: See TracBrowser for help on using the repository browser.