diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2010-09-21 10:22:06 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2010-09-21 10:22:06 +0000 |
commit | 07351222e6d0b6b3dcd4f50ecb18bc09e7402d1c (patch) | |
tree | 4766a942caadb8937c09c015ec2609d8455ba8c5 /os/kernel/src/chvt.c | |
parent | 16855e1a4e43b4b45e5b5a595628ab1d8c108093 (diff) | |
download | ChibiOS-07351222e6d0b6b3dcd4f50ecb18bc09e7402d1c.tar.gz ChibiOS-07351222e6d0b6b3dcd4f50ecb18bc09e7402d1c.tar.bz2 ChibiOS-07351222e6d0b6b3dcd4f50ecb18bc09e7402d1c.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@2184 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'os/kernel/src/chvt.c')
-rw-r--r-- | os/kernel/src/chvt.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/os/kernel/src/chvt.c b/os/kernel/src/chvt.c index 058433c09..070a9c620 100644 --- a/os/kernel/src/chvt.c +++ b/os/kernel/src/chvt.c @@ -36,6 +36,8 @@ VTList vtlist; /**
* @brief Virtual Timers initialization.
* @note Internal use only.
+ *
+ * @notapi
*/
void vt_init(void) {
@@ -58,6 +60,8 @@ void vt_init(void) { * be disposed or reused.
* @param[in] par a parameter that will be passed to the callback
* function
+ *
+ * @iclass
*/
void chVTSetI(VirtualTimer *vtp, systime_t time, vtfunc_t vtfunc, void *par) {
VirtualTimer *p;
@@ -85,6 +89,8 @@ void chVTSetI(VirtualTimer *vtp, systime_t time, vtfunc_t vtfunc, void *par) { * @note The timer MUST be active when this function is invoked.
*
* @param[in] vtp the @p VirtualTimer structure pointer
+ *
+ * @iclass
*/
void chVTResetI(VirtualTimer *vtp) {
@@ -110,6 +116,8 @@ void chVTResetI(VirtualTimer *vtp) { * @param[in] end the end of the time window (non inclusive)
* @retval TRUE current time within the specified time window.
* @retval FALSE current time not within the specified time window.
+ *
+ * @api
*/
bool_t chTimeIsWithin(systime_t start, systime_t end) {
|