diff options
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_ */
/** @} */
|