Skip to content

Commit

Permalink
Merge pull request #13370 from haukepetersen/add_xtimer_usleep64
Browse files Browse the repository at this point in the history
xtimer: properly expose xtimer_usleep64()
  • Loading branch information
kaspar030 committed Feb 13, 2020
2 parents a055a6c + b92f5cc commit ef6bfbb
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions sys/include/xtimer.h
Expand Up @@ -150,6 +150,15 @@ static inline void xtimer_sleep(uint32_t seconds);
*/
static inline void xtimer_usleep(uint32_t microseconds);

/**
* @brief Pause the execution of a thread for some microseconds
*
* See xtimer_usleep() for more information.
*
* @param[in] microseconds the amount of microseconds the thread should sleep
*/
static inline void xtimer_usleep64(uint64_t microseconds);

/**
* @brief Stop execution of a thread for some time
*
Expand Down

0 comments on commit ef6bfbb

Please sign in to comment.