diff options
Diffstat (limited to 'os/kernel/include/chvt.h')
-rw-r--r-- | os/kernel/include/chvt.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/os/kernel/include/chvt.h b/os/kernel/include/chvt.h index 8b065b208..8a44bf703 100644 --- a/os/kernel/include/chvt.h +++ b/os/kernel/include/chvt.h @@ -94,6 +94,8 @@ extern VTList vtlist; /**
* @brief Virtual timers ticker.
+ *
+ * @iclass
*/
#define chVTDoTickI() { \
vtlist.vt_systime++; \
@@ -127,6 +129,8 @@ extern "C" { /**
* @brief Returns TRUE if the speciified timer is armed.
+ *
+ * @iclass
*/
#define chVTIsArmedI(vtp) ((vtp)->vt_func != NULL)
@@ -138,6 +142,8 @@ extern "C" { * @note This function is designed to work with the @p chThdSleepUntil().
*
* @return The system time in ticks.r
+ *
+ * @api
*/
#define chTimeNow() (vtlist.vt_systime)
|