/** * @file * * @ingroup Console * * @brief Generic libchip console read extension */ /* * This file is an extension of the generic console driver * shell used by all console drivers using libchip. * * COPYRIGHT (c) 1989-2011. * On-Line Applications Research Corporation (OAR). * * The license and distribution terms for this file may be * found in the file LICENSE in this distribution or at * http://www.rtems.com/license/LICENSE. * * $Id$ */ #include #include #include #include #include #include #include #include "console_private.h" /* * console_read * * This routine uses the termios driver to read a character. */ rtems_device_driver console_read( rtems_device_major_number major, rtems_device_minor_number minor, void * arg ) { return rtems_termios_read (arg); }