From 8d41236f6d4bdb59545f2052bff5de122ffebb72 Mon Sep 17 00:00:00 2001 From: Joel Sherrill Date: Mon, 23 Oct 2006 19:38:12 +0000 Subject: 2006-10-23 Joel Sherrill * bfin/ChangeLog, bfin/Makefile.am, bfin/acinclude.m4, bfin/configure.ac, bfin/eZKit533/.cvsignore, bfin/eZKit533/ChangeLog, bfin/eZKit533/Makefile.am, bfin/eZKit533/README, bfin/eZKit533/bsp_specs, bfin/eZKit533/configure, bfin/eZKit533/configure.ac, bfin/eZKit533/preinstall.am, bfin/eZKit533/times, bfin/eZKit533/console/console-io.c, bfin/eZKit533/include/.cvsignore, bfin/eZKit533/include/bsp.h, bfin/eZKit533/include/bspopts.h.in, bfin/eZKit533/include/coverhd.h, bfin/eZKit533/include/tm27.h, bfin/eZKit533/startup/bspstart.c, bfin/eZKit533/startup/linkcmds, bfin/shared/clock/clockdrv.c, bfin/shared/clock/rtc.c, bfin/shared/clock/tod.h, bfin/shared/console/console.c, bfin/shared/start/start.S, bfin/shared/timer/timer.c: New files. --- c/src/lib/libbsp/bfin/shared/clock/tod.h | 63 ++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 c/src/lib/libbsp/bfin/shared/clock/tod.h (limited to 'c/src/lib/libbsp/bfin/shared/clock/tod.h') diff --git a/c/src/lib/libbsp/bfin/shared/clock/tod.h b/c/src/lib/libbsp/bfin/shared/clock/tod.h new file mode 100644 index 0000000000..244f5f3ae4 --- /dev/null +++ b/c/src/lib/libbsp/bfin/shared/clock/tod.h @@ -0,0 +1,63 @@ +/* tod.h + * + * Real Time Clock definitions for eZKit533. + * + * Copyright (c) 2006 by Atos Automacao Industrial Ltda. + * written by Alain Schaefer + * and Antonio Giovanini + * + * 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$ + */ + + +#ifndef TOD_H +#define TOD_H + +#ifdef __cplusplus +extern "C" { +#endif + +/* + * Set the RTC. + */ + +int setRealTime( + rtems_time_of_day *tod +); + +/* + * Get the time from the RTC. + */ + +void getRealTime( + rtems_time_of_day *tod +); + +/* + * Read real time from RTC and set it to RTEMS' clock manager + */ + +void setRealTimeToRTEMS(); + +/* + * Read time from RTEMS' clock manager and set it to RTC + */ + +void setRealTimeFromRTEMS(); + +/* + * Return the difference between RTC and RTEMS' clock manager time in minutes. + * If the difference is greater than 1 day, this returns 9999. + */ + +int checkRealTime(); + +#ifdef __cplusplus +} +#endif + +#endif -- cgit v1.2.3