File tree Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Expand file tree Collapse file tree 1 file changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -53,18 +53,27 @@ extern "C" {
53
53
* the accuracy of single precision floating point).
54
54
*
55
55
* @param s number of seconds to wait
56
+ *
57
+ * @note
58
+ * This func will lock the deep sleep, if you want device entry deep sleep mode, please use Thread::wait()
56
59
*/
57
60
void wait (float s );
58
61
59
62
/** Waits a number of milliseconds.
60
63
*
61
64
* @param ms the whole number of milliseconds to wait
65
+ *
66
+ * @note
67
+ * This func will lock the deep sleep, if you want device entry deep sleep mode, please use Thread::wait()
62
68
*/
63
69
void wait_ms (int ms );
64
70
65
71
/** Waits a number of microseconds.
66
72
*
67
73
* @param us the whole number of microseconds to wait
74
+ *
75
+ * @note
76
+ * This func will lock the deep sleep.
68
77
*/
69
78
void wait_us (int us );
70
79
You can’t perform that action at this time.
0 commit comments