Skip to content
Snippets Groups Projects
Commit 1bbd99b0 authored by Peter Kietzmann's avatar Peter Kietzmann
Browse files

Merge pull request #5396 from OlegHahm/doc_xtimer_minor

doc: xtimer: be a bit more precise
parents b8787b64 b5bec6a5
Branches
No related tags found
No related merge requests found
...@@ -97,7 +97,7 @@ void xtimer_now_timex(timex_t *out); ...@@ -97,7 +97,7 @@ void xtimer_now_timex(timex_t *out);
void xtimer_init(void); void xtimer_init(void);
/** /**
* @brief Stop execution of a thread for some time * @brief Pause the execution of a thread for some seconds
* *
* When called from an ISR, this function will spin and thus block the MCU in * When called from an ISR, this function will spin and thus block the MCU in
* interrupt context for the specified amount in *seconds*, so don't *ever* use * interrupt context for the specified amount in *seconds*, so don't *ever* use
...@@ -108,7 +108,7 @@ void xtimer_init(void); ...@@ -108,7 +108,7 @@ void xtimer_init(void);
static void xtimer_sleep(uint32_t seconds); static void xtimer_sleep(uint32_t seconds);
/** /**
* @brief Stop execution of a thread for some time * @brief Pause the execution of a thread for some microseconds
* *
* When called from an ISR, this function will spin and thus block the MCU for * When called from an ISR, this function will spin and thus block the MCU for
* the specified amount in microseconds, so only use it there for *very* short * the specified amount in microseconds, so only use it there for *very* short
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment