📄 sci.h
字号:
/* * Driver for the sh2 704x on-chip serial devices (sci) * * Authors: Ralf Corsepius (corsepiu@faw.uni-ulm.de) and * Bernd Becker (becker@faw.uni-ulm.de) * * COPYRIGHT (c) 1997-1998, FAW Ulm, Germany * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * * * COPYRIGHT (c) 1998. * 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: sci.h,v 1.4.4.1 2003/09/04 18:45:57 joel Exp $ */#ifndef _sh_sci_h#define _sh_sci_h#include <rtems/libio.h>#ifdef __cplusplusextern "C" {#endif/* * Devices are set to 9600 bps, 8 databits, 1 stopbit, no * parity and asynchronous mode by default. * * NOTE: * The onboard serial devices of the SH do not support hardware * handshake. */ #define DEVSCI_DRIVER_TABLE_ENTRY \ { sh_sci_initialize, sh_sci_open, sh_sci_close, sh_sci_read, \ sh_sci_write, sh_sci_control }extern rtems_device_driver sh_sci_initialize( rtems_device_major_number, rtems_device_minor_number, void *);extern rtems_device_driver sh_sci_open( rtems_device_major_number, rtems_device_minor_number, void *);extern rtems_device_driver sh_sci_close( rtems_device_major_number, rtems_device_minor_number, void *);extern rtems_device_driver sh_sci_read( rtems_device_major_number, rtems_device_minor_number, void *);extern rtems_device_driver sh_sci_write( rtems_device_major_number, rtems_device_minor_number, void *);extern rtems_device_driver sh_sci_control( rtems_device_major_number, rtems_device_minor_number, void *); extern const rtems_termios_callbacks * sh_sci_get_termios_handlers( rtems_boolean poll ); #ifdef __cplusplus}#endif#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -