source: rtems/c/src/lib/libcpu/bfin/clock/tod.h @ 2c77cbff

4.104.114.95
Last change on this file since 2c77cbff was 2c77cbff, checked in by Ralf Corsepius <ralf.corsepius@…>, on 08/18/08 at 13:31:59

Add missing prototypes.

  • Property mode set to 100644
File size: 1.1 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(void);
45
46/*
47 *  Read time from RTEMS' clock manager and set it to RTC
48 */
49
50void setRealTimeFromRTEMS(void);
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(void);
58
59#ifdef __cplusplus
60}
61#endif
62
63#endif
Note: See TracBrowser for help on using the repository browser.