source: rtems/cpukit/libcsupport/include/rtc.h @ 5cd51f5

4.104.114.84.95
Last change on this file since 5cd51f5 was 4d3017a, checked in by Ralf Corsepius <ralf.corsepius@…>, on 12/02/04 at 18:04:55

Add doxygen preamble.

  • Property mode set to 100644
File size: 808 bytes
Line 
1/**
2 *  @file rtems/rtc.h
3 *
4 *  This file describes the Real-Time Clock driver for all boards.
5 *  This driver provides support for the standard RTEMS routines
6 *  that set the tod based on an RTC.
7 */
8 
9/*
10 *  COPYRIGHT (c) 1989-2001.
11 *  On-Line Applications Research Corporation (OAR).
12 *
13 *  The license and distribution terms for this file may be
14 *  found in the file LICENSE in this distribution or at
15 *  http://www.rtems.com/license/LICENSE.
16 *
17 *  $Id$
18 */
19
20#ifndef _RTC_DRIVER_h
21#define _RTC_DRIVER_h
22
23#ifdef __cplusplus
24extern "C" {
25#endif
26
27#define RTC_DRIVER_TABLE_ENTRY \
28  { rtc_initialize, NULL, NULL, NULL, NULL, NULL }
29
30rtems_device_driver rtc_initialize(
31  rtems_device_major_number,
32  rtems_device_minor_number,
33  void *
34);
35
36#ifdef __cplusplus
37}
38#endif
39
40#endif
41/* end of include file */
Note: See TracBrowser for help on using the repository browser.