aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib
diff options
context:
space:
mode:
authorgdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-02-04 20:22:32 +0000
committergdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4>2009-02-04 20:22:32 +0000
commit37f18c5818832fe6d9e8389bea01ecd13598668a (patch)
treefba95076f998152ba7ffa5a5f3cbe924dca574ea /src/lib
parente4245075bef0e790f228d47c4dfb0380f878cf4f (diff)
downloadChibiOS-37f18c5818832fe6d9e8389bea01ecd13598668a.tar.gz
ChibiOS-37f18c5818832fe6d9e8389bea01ecd13598668a.tar.bz2
ChibiOS-37f18c5818832fe6d9e8389bea01ecd13598668a.zip
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@716 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/ch.cpp8
-rw-r--r--src/lib/ch.hpp2
-rw-r--r--src/lib/evtimer.c2
-rw-r--r--src/lib/evtimer.h2
4 files changed, 14 insertions, 0 deletions
diff --git a/src/lib/ch.cpp b/src/lib/ch.cpp
index 61a5633d4..aaf357693 100644
--- a/src/lib/ch.cpp
+++ b/src/lib/ch.cpp
@@ -16,6 +16,12 @@
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
+/**
+ * @file ch.cpp
+ * @brief C++ wrapper code.
+ * @addtogroup CPlusPlusLibrary
+ * @{
+ */
#include <ch.hpp>
@@ -329,3 +335,5 @@ namespace chibios_rt {
#endif /* CH_USE_EVENTS_TIMEOUT */
#endif /* CH_USE_EVENTS */
}
+
+/** @} */
diff --git a/src/lib/ch.hpp b/src/lib/ch.hpp
index 377eed6d6..66db61dd1 100644
--- a/src/lib/ch.hpp
+++ b/src/lib/ch.hpp
@@ -18,6 +18,8 @@
*/
/**
+ * @file ch.hpp
+ * @brief C++ wrapper classes and definitions.
* @addtogroup CPlusPlusLibrary
* @{
*/
diff --git a/src/lib/evtimer.c b/src/lib/evtimer.c
index 691484336..114a9b3a6 100644
--- a/src/lib/evtimer.c
+++ b/src/lib/evtimer.c
@@ -18,6 +18,8 @@
*/
/**
+ * @file evtimer.c
+ * @brief Events Generator Timer code.
* @addtogroup event_timer
* @{
*/
diff --git a/src/lib/evtimer.h b/src/lib/evtimer.h
index cb3e4c44c..acfc97eb1 100644
--- a/src/lib/evtimer.h
+++ b/src/lib/evtimer.h
@@ -18,6 +18,8 @@
*/
/**
+ * @file evtimer.h
+ * @brief Events Generator Timer structures and macros.
* @addtogroup event_timer
* @{
*/