diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-05-18 15:37:58 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2012-05-18 15:37:58 +0000 |
commit | 1606d4ea9f25f856f271bfcfd71f7ba8fe0aed77 (patch) | |
tree | 326c55b8c8bd2d6c61e11c247aaccd500909c7bf /os | |
parent | 01a811d27f05c73904200aaeaf618ed657b65283 (diff) | |
download | ChibiOS-1606d4ea9f25f856f271bfcfd71f7ba8fe0aed77.tar.gz ChibiOS-1606d4ea9f25f856f271bfcfd71f7ba8fe0aed77.tar.bz2 ChibiOS-1606d4ea9f25f856f271bfcfd71f7ba8fe0aed77.zip |
Documentation related fix.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4209 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os')
-rw-r--r-- | os/various/chprintf.c | 8 | ||||
-rw-r--r-- | os/various/chprintf.h | 2 |
2 files changed, 9 insertions, 1 deletions
diff --git a/os/various/chprintf.c b/os/various/chprintf.c index 3cb66bf91..7b02ab3ba 100644 --- a/os/various/chprintf.c +++ b/os/various/chprintf.c @@ -21,6 +21,14 @@ Concepts and parts of this file have been contributed by Fabio Utzig.
*/
+/**
+ * @file chprintf.c
+ * @brief Mini printf-like functionality.
+ *
+ * @addtogroup chprintf
+ * @{
+ */
+
#include <stdarg.h>
#include "ch.h"
diff --git a/os/various/chprintf.h b/os/various/chprintf.h index 039b23a6b..7115b036a 100644 --- a/os/various/chprintf.h +++ b/os/various/chprintf.h @@ -22,7 +22,7 @@ * @file chprintf.h
* @brief Mini printf-like functionality.
*
- * @addtogroup event_timer
+ * @addtogroup chprintf
* @{
*/
|