Skip to content
Snippets Groups Projects
Commit 44d4c46f authored by Hauke Petersen's avatar Hauke Petersen
Browse files

Merge pull request #3790 from kaspar030/fix_xtimer_usleep_until_doxygen

sys: xtimer: fix xtimer_usleep_until doxygen
parents 0242be02 9b07294e
No related branches found
No related tags found
No related merge requests found
......@@ -155,14 +155,15 @@ static inline void xtimer_spin(uint32_t microseconds);
* @brief will cause the calling thread to be suspended until the absolute
* time (@p last_wakeup + @p interval).
*
* When the function returns, @p last_wakeup is set to xtimer_now().
* When the function returns, @p last_wakeup is set to
* (@p last_wakeup + @p interval).
*
* This function can be used to create periodic wakeups.
* @c last_wakeup should be set to xtimer_now() before first call of the
* function.
*
* If the result of (@p last_wakeup + usecs) would be in the past, the function
* sets @p last_wakeup to xtimer_now() and returns immediately.
* sets @p last_wakeup to @p last_wakeup + @p interval and returns immediately.
*
* @param[in] last_wakeup base time for the wakeup
* @param[in] usecs time in microseconds that will be added to
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment