source: rtems/c/src/lib/libcpu/bfin/clock/tod.h @ 30abd24

4.104.114.95
Last change on this file since 30abd24 was 30abd24, checked in by Joel Sherrill <joel.sherrill@…>, on 08/15/08 at 20:18:41

2008-08-15 Allan Hessenflow <allanh@…>

  • ChangeLog?, Makefile.am, README, configure.ac, preinstall.am, cache/cache.c, cache/cache_.h, clock/clock.c, clock/rtc.c, clock/tod.h, include/bf533.h, include/bf537.h, include/cecRegs.h, include/coreTimerRegs.h, include/dmaRegs.h, include/ebiuRegs.h, include/ethernetRegs.h, include/gpioRegs.h, include/memoryRegs.h, include/mmuRegs.h, include/ppiRegs.h, include/rtcRegs.h, include/sicRegs.h, include/spiRegs.h, include/sportRegs.h, include/timerRegs.h, include/twiRegs.h, include/uartRegs.h, include/wdogRegs.h, interrupt/interrupt.c, interrupt/interrupt.h, mmu/mmu.c, mmu/mmu.h, network/ethernet.c, network/ethernet.h, serial/spi.c, serial/spi.h, serial/sport.c, serial/sport.h, serial/twi.c, serial/twi.h, serial/uart.c, serial/uart.h, timer/timer.c: New files.
  • Property mode set to 100644
File size: 1.0 KB
Line 
1/*  tod.h
2 * 
3 *  Real Time Clock definitions for eZKit533.
4 *
5 *  Copyright (c) 2006 by Atos Automacao Industrial Ltda.
6 *             written by Alain Schaefer <alain.schaefer@easc.ch>
7 *                    and Antonio Giovanini <antonio@atos.com.br>
8 *
9 *  The license and distribution terms for this file may be
10 *  found in the file LICENSE in this distribution or at
11 *  http://www.rtems.com/license/LICENSE.
12 *
13 *  $Id$
14 */
15
16
17#ifndef TOD_H
18#define TOD_H
19
20#ifdef __cplusplus
21extern "C" {
22#endif
23
24/*
25 *  Set the RTC.
26 */
27
28int setRealTime(
29  rtems_time_of_day *tod
30);
31
32/*
33 *  Get the time from the RTC.
34 */
35
36void getRealTime(
37  rtems_time_of_day *tod
38);
39
40/*
41 *  Read real time from RTC and set it to RTEMS' clock manager
42 */
43
44void setRealTimeToRTEMS();
45
46/*
47 *  Read time from RTEMS' clock manager and set it to RTC
48 */
49
50void setRealTimeFromRTEMS();
51
52/*
53 *  Return the difference between RTC and RTEMS' clock manager time in minutes.
54 *  If the difference is greater than 1 day, this returns 9999.
55 */
56
57int checkRealTime();
58
59#ifdef __cplusplus
60}
61#endif
62
63#endif
Note: See TracBrowser for help on using the repository browser.