diff options
author | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-01-11 11:28:32 +0000 |
---|---|---|
committer | gdisirio <gdisirio@35acf78f-673a-0410-8e92-d51de3d6d3f4> | 2009-01-11 11:28:32 +0000 |
commit | 382151cf63ff5ef3144fc38bb87490d33da7b2d3 (patch) | |
tree | a1ebbe48fe92cc5fa9f6a0493812269820747b9d /src/lib/evtimer.c | |
parent | 36c9110259212470667c7cc95bb99ca577945d87 (diff) | |
download | ChibiOS-382151cf63ff5ef3144fc38bb87490d33da7b2d3.tar.gz ChibiOS-382151cf63ff5ef3144fc38bb87490d33da7b2d3.tar.bz2 ChibiOS-382151cf63ff5ef3144fc38bb87490d33da7b2d3.zip |
git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@619 35acf78f-673a-0410-8e92-d51de3d6d3f4
Diffstat (limited to 'src/lib/evtimer.c')
-rw-r--r-- | src/lib/evtimer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/evtimer.c b/src/lib/evtimer.c index f9bd7449b..786a25c7f 100644 --- a/src/lib/evtimer.c +++ b/src/lib/evtimer.c @@ -39,7 +39,7 @@ static void tmrcb(void *p) { /**
* Starts the timer, if the timer was already running then the function has
* no effect.
- * @param etp pointer to an initialized \p EvTimer structure.
+ * @param etp pointer to an initialized @p EvTimer structure.
*/
void evtStart(EvTimer *etp) {
@@ -54,7 +54,7 @@ void evtStart(EvTimer *etp) { /**
* Stops the timer, if the timer was already stopped then the function has
* no effect.
- * @param etp pointer to an initialized \p EvTimer structure.
+ * @param etp pointer to an initialized @p EvTimer structure.
*/
void evtStop(EvTimer *etp) {
|