diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-03-18 19:53:33 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-03-18 19:53:33 +0000 |
commit | 07e6ae3a59c7191facaaada4b4549587ae5ed0fa (patch) | |
tree | aa7fd5b6041dfaa67815a84906db535ddb5a4416 /src | |
parent | ac4e799160b05fc1a9f39ce28fde891e749fddbc (diff) | |
download | ChibiOS-07e6ae3a59c7191facaaada4b4549587ae5ed0fa.tar.gz ChibiOS-07e6ae3a59c7191facaaada4b4549587ae5ed0fa.tar.bz2 ChibiOS-07e6ae3a59c7191facaaada4b4549587ae5ed0fa.zip |
Fixed bug 2692510 and some other small documentation errors.
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@852 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'src')
-rw-r--r-- | src/chdebug.c | 2 | ||||
-rw-r--r-- | src/include/vt.h | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/chdebug.c b/src/chdebug.c index dc16a27bc..aa76a13f4 100644 --- a/src/chdebug.c +++ b/src/chdebug.c @@ -20,7 +20,7 @@ /**
* @file chdebug.c
* @brief ChibiOS/RT Debug code.
- * @addtogroup CondVars
+ * @addtogroup Debug
* @{
*/
diff --git a/src/include/vt.h b/src/include/vt.h index e736e1af0..3d1b59bd8 100644 --- a/src/include/vt.h +++ b/src/include/vt.h @@ -123,15 +123,17 @@ extern "C" { /**
* Provided for backward compatibility.
* @deprecated Will be removed in 1.2.0.
+ * @see chTimeNow()
*/
#define chSysGetTime() chTimeNow()
/**
* Provided for backward compatibility.
* @deprecated Will be removed in 1.2.0.
+ * @see chTimeIsWithin()
*/
#define chSysInTimeWindow(start, end) chTimeIsWithin(start, end)
-
+
#endif /* _VT_H_ */
/** @} */
|