From b92f5ccd15a8eb29db56e671a59f30610c3dc259 Mon Sep 17 00:00:00 2001 From: Hauke Petersen Date: Thu, 13 Feb 2020 15:07:06 +0100 Subject: [PATCH] xtimer: properly expose xtimer_usleep64() --- sys/include/xtimer.h | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/sys/include/xtimer.h b/sys/include/xtimer.h index aea20cc029..e48a23dc4b 100644 --- a/sys/include/xtimer.h +++ b/sys/include/xtimer.h @@ -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 *