diff options
author | barthess <barthess@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2011-09-02 13:11:14 +0000 |
---|---|---|
committer | barthess <barthess@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2011-09-02 13:11:14 +0000 |
commit | c757d88167076c3cfb46b023a3f246ef2b4e77d3 (patch) | |
tree | 298d626f743d7a44749d3f42d32b36e668fce65b /os/hal/dox | |
parent | 84fcd0571ea085d691ca0f8d6d099aa870c384a3 (diff) | |
parent | 8a3ce5e27333e4dc6bd8047c440b84f3060d7d0e (diff) | |
download | ChibiOS-c757d88167076c3cfb46b023a3f246ef2b4e77d3.tar.gz ChibiOS-c757d88167076c3cfb46b023a3f246ef2b4e77d3.tar.bz2 ChibiOS-c757d88167076c3cfb46b023a3f246ef2b4e77d3.zip |
RTC. Merge to trunk.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@3281 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/hal/dox')
-rw-r--r-- | os/hal/dox/rtc.dox | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/os/hal/dox/rtc.dox b/os/hal/dox/rtc.dox new file mode 100644 index 000000000..3572aca18 --- /dev/null +++ b/os/hal/dox/rtc.dox @@ -0,0 +1,34 @@ +/*
+ ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010,
+ 2011 Giovanni Di Sirio.
+
+ This file is part of ChibiOS/RT.
+
+ ChibiOS/RT is free software; you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation; either version 3 of the License, or
+ (at your option) any later version.
+
+ ChibiOS/RT is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+/**
+ * @defgroup RTC RTC Driver
+ * @brief Real Time Clock Abstraction Layer
+ * @details This module defines an abstract interface for Real Time Clock cell.
+ * If you do not need callback functionality than disable
+ * @p RTC_SUPPORTS_CALLBACKS option in @p halconf.h.
+ * In @p halconf.h you also can select clock source for RTC in
+ * @p RTC_CLOCK_SOURCE option.
+ *
+ * @pre In order to use the RTC driver the @p HAL_USE_RTC option
+ * must be enabled in @p halconf.h.
+ *
+ * @ingroup IO
+ */
|