source: rtems/c/src/libchip/serial/mc68681.h @ ab2dbd7

4.104.114.84.95
Last change on this file since ab2dbd7 was ab2dbd7, checked in by Joel Sherrill <joel.sherrill@…>, on 06/22/98 at 11:09:32

Added mc68681 stuff to the makefile.

Added numerous constants to mc68681_p.h.

Changed spacing.

At this point the polled support is in but nothing else is right except the
structure.

  • Property mode set to 100644
File size: 833 bytes
Line 
1/*
2 *
3 *  COPYRIGHT (c) 1989-1998.
4 *  On-Line Applications Research Corporation (OAR).
5 *  Copyright assigned to U.S. Government, 1994.
6 *
7 *  The license and distribution terms for this file may be
8 *  found in the file LICENSE in this distribution or at
9 *  http://www.OARcorp.com/rtems/license.html.
10 *
11 *  $Id$
12 */
13
14#ifndef _MC68681_H_
15#define _MC68681_H_
16
17#ifdef __cplusplus
18extern "C" {
19#endif
20
21/*
22 *  These are just used in the interface between this driver and
23 *  the read/write register routines.
24 */
25
26#define MC68681_STATUS_REG      0xFF
27
28/*
29 * Driver function table
30 */
31
32extern console_fns mc68681_fns;
33extern console_fns mc68681_fns_polled;
34
35/*
36 * Flow control function tables
37 */
38
39extern console_flow mc68681_flow_RTSCTS;
40extern console_flow mc68681_flow_DTRCTS;
41
42#ifdef __cplusplus
43}
44#endif
45
46#endif /* _MC68681_H_ */
Note: See TracBrowser for help on using the repository browser.