Doxygen clarification to etimer_reset and ctimer_reset

This commit is contained in:
Simon Duquennoy 2018-10-13 10:19:18 +02:00
parent 8472cf8bbe
commit 2a66edfd6b
2 changed files with 4 additions and 2 deletions

View File

@ -76,7 +76,8 @@ struct ctimer {
* is the exact time that the callback timer last
* expired. Therefore, this function will cause the timer
* to be stable over time, unlike the ctimer_restart()
* function.
* function. If this is executed before the timer expired,
* this function has no effect.
*
* \sa ctimer_restart()
*/

View File

@ -107,7 +107,8 @@ void etimer_set(struct etimer *et, clock_time_t interval);
* is the exact time that the event timer last
* expired. Therefore, this function will cause the timer
* to be stable over time, unlike the etimer_restart()
* function.
* function. If this is executed before the timer expired,
* this function has no effect.
*
* \sa etimer_restart()
*/