source: rtems/c/src/lib/libbsp/h8300/h8sim/console/console-io.c @ 8b33b6af

4.104.115
Last change on this file since 8b33b6af was 8b33b6af, checked in by Joel Sherrill <joel.sherrill@…>, on 09/25/08 at 13:34:18

2008-09-25 Joel Sherrill <joel.sherrill@…>

  • console/console-io.c: Add missing file and remove junk code.
  • console/syscalls.S: New file.
  • Property mode set to 100644
File size: 1.2 KB
Line 
1/*
2 *  This file contains the hardware specific portions of the TTY driver
3 *  for the serial ports on the erc32.
4 *
5 *  COPYRIGHT (c) 1989-2008.
6 *  On-Line Applications Research Corporation (OAR).
7 *
8 *  The license and distribution terms for this file may be
9 *  found in the file LICENSE in this distribution or at
10 *  http://www.rtems.com/license/LICENSE.
11 *
12 *  $Id$
13 */
14
15#include <bsp.h>
16#include <rtems/libio.h>
17#include <stdlib.h>
18#include <assert.h>
19
20/*
21 *  console_initialize_hardware
22 *
23 *  This routine initializes the console hardware.
24 *
25 */
26
27void console_initialize_hardware(void)
28{
29  return;
30}
31
32/*
33 *  console_outbyte_polled
34 *
35 *  This routine transmits a character using polling.
36 */
37ssize_t _sys_write(int fd, const void *buf, size_t count);
38void console_outbyte_polled(
39  int  port,
40  char ch
41)
42{
43  _sys_write( 1, &ch, 1 );
44}
45
46/*
47 *  console_inbyte_nonblocking
48 *
49 *  This routine polls for a character.
50 */
51
52int console_inbyte_nonblocking(
53  int port
54)
55{
56  return -1;
57}
58
59#include <rtems/bspIo.h>
60
61void H8simBSP_output_char(char c) { console_outbyte_polled( 0, c ); }
62
63BSP_output_char_function_type           BSP_output_char = H8simBSP_output_char;
64BSP_polling_getchar_function_type       BSP_poll_char = NULL;
Note: See TracBrowser for help on using the repository browser.