summaryrefslogtreecommitdiffstats
path: root/c/src/libchip/rtc/m48t08.h
diff options
context:
space:
mode:
authorJoel Sherrill <joel.sherrill@OARcorp.com>1998-07-28 23:03:40 +0000
committerJoel Sherrill <joel.sherrill@OARcorp.com>1998-07-28 23:03:40 +0000
commita1f514f197932b3e5fcb5e32a197ce1df836576a (patch)
tree3c25b8d3acd52fd6fe96915f515ac36b51ba40e9 /c/src/libchip/rtc/m48t08.h
parentCorrected spacing. (diff)
downloadrtems-a1f514f197932b3e5fcb5e32a197ce1df836576a.tar.bz2
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.
Diffstat (limited to 'c/src/libchip/rtc/m48t08.h')
-rw-r--r--c/src/libchip/rtc/m48t08.h36
1 files changed, 36 insertions, 0 deletions
diff --git a/c/src/libchip/rtc/m48t08.h b/c/src/libchip/rtc/m48t08.h
new file mode 100644
index 0000000000..cd2812cae5
--- /dev/null
+++ b/c/src/libchip/rtc/m48t08.h
@@ -0,0 +1,36 @@
+/*
+ * This file contains the definitions for the following real-time clocks:
+ *
+ * + Mostek M48T08
+ * + Mostek M48T18
+ * + Dallas Semiconductor DS1643
+ *
+ * COPYRIGHT (c) 1989-1998.
+ * On-Line Applications Research Corporation (OAR).
+ * Copyright assigned to U.S. Government, 1994.
+ *
+ * The license and distribution terms for this file may be
+ * found in the file LICENSE in this distribution or at
+ * http://www.OARcorp.com/rtems/license.html.
+ *
+ * $Id$
+ */
+
+#ifndef __LIBCHIP_M48T08_h
+#define __LIBCHIP_M48T08_h
+
+/*
+ * Register indices
+ */
+
+#define M48T08_CONTROL 0
+#define M48T08_SECOND 1
+#define M48T08_MINUTE 2
+#define M48T08_HOUR 3
+#define M48T08_DAY_OF_WEEK 4
+#define M48T08_DATE 5
+#define M48T08_MONTH 6
+#define M48T08_YEAR 7
+
+#endif
+/* end of include file */