source: rtems/c/src/libchip/rtc/m48t08.h @ 8d6e7120

4.104.114.84.95
Last change on this file since 8d6e7120 was a1f514f, checked in by Joel Sherrill <joel.sherrill@…>, on 07/28/98 at 23:03:40

First cut implementation of real-time clock support in libchip. This
version compiles cleanly but there is not a BSP with a configuration
table to utilize it.

  • Property mode set to 100644
File size: 831 bytes
Line 
1/*
2 *  This file contains the definitions for the following real-time clocks:
3 *
4 *    + Mostek M48T08
5 *    + Mostek M48T18
6 *    + Dallas Semiconductor DS1643
7 *
8 *  COPYRIGHT (c) 1989-1998.
9 *  On-Line Applications Research Corporation (OAR).
10 *  Copyright assigned to U.S. Government, 1994.
11 *
12 *  The license and distribution terms for this file may be
13 *  found in the file LICENSE in this distribution or at
14 *  http://www.OARcorp.com/rtems/license.html.
15 *
16 *  $Id$
17 */
18
19#ifndef __LIBCHIP_M48T08_h
20#define __LIBCHIP_M48T08_h
21
22/*
23 *  Register indices
24 */
25
26#define M48T08_CONTROL     0
27#define M48T08_SECOND      1
28#define M48T08_MINUTE      2
29#define M48T08_HOUR        3
30#define M48T08_DAY_OF_WEEK 4
31#define M48T08_DATE        5
32#define M48T08_MONTH       6
33#define M48T08_YEAR        7
34 
35#endif
36/* end of include file */
Note: See TracBrowser for help on using the repository browser.