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

4.104.114.84.95
Last change on this file since 8a2d4f2b was 7deeb16, checked in by Joel Sherrill <joel.sherrill@…>, on 06/22/98 at 11:49:38

Added initial part of iniitialization.

  • Property mode set to 100644
File size: 1009 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 when accessing the first
24 *  control port.
25 */
26
27#define MC68681_STATUS          1
28#define MC68681_RX_BUFFER       2
29
30#define MC68681_CLOCK_SELECT    1
31#define MC68681_COMMAND         2
32#define MC68681_TX_BUFFER       3
33
34/*
35 * Driver function table
36 */
37
38extern console_fns mc68681_fns;
39extern console_fns mc68681_fns_polled;
40
41/*
42 * Flow control function tables
43 */
44
45extern console_flow mc68681_flow_RTSCTS;
46extern console_flow mc68681_flow_DTRCTS;
47
48#ifdef __cplusplus
49}
50#endif
51
52#endif /* _MC68681_H_ */
Note: See TracBrowser for help on using the repository browser.