File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ extern "C" {
55
55
* @param s number of seconds to wait
56
56
*
57
57
* @note
58
- * This function always spins to get the exact number of microseconds,
58
+ * If the RTOS is present, this function always spins to get the exact number of microseconds,
59
59
* which potentially affects power (such as preventing deep sleep) and multithread performance.
60
60
* You can avoid it by using Thread::wait().
61
61
*/
@@ -66,7 +66,7 @@ void wait(float s);
66
66
* @param ms the whole number of milliseconds to wait
67
67
*
68
68
* @note
69
- * This function always spins to get the exact number of microseconds,
69
+ * If the RTOS is present, this function always spins to get the exact number of microseconds,
70
70
* which potentially affects power (such as preventing deep sleep) and multithread performance.
71
71
* You can avoid it by using Thread::wait().
72
72
*/
@@ -77,7 +77,7 @@ void wait_ms(int ms);
77
77
* @param us the whole number of microseconds to wait
78
78
*
79
79
* @note
80
- * This function always spins to get the exact number of microseconds,
80
+ * If the RTOS is present, this function always spins to get the exact number of microseconds,
81
81
* which potentially affects power (such as preventing deep sleep) and multithread performance.
82
82
*/
83
83
void wait_us (int us );
You can’t perform that action at this time.
0 commit comments