1
0
Эх сурвалжийг харах

[update] usleep supports calling in interrupts.

guozhanxin 3 жил өмнө
parent
commit
66b7289ee7

+ 8 - 1
components/libc/compilers/common/unistd.c

@@ -55,7 +55,14 @@ RTM_EXPORT(sleep);
 
 
 int usleep(useconds_t usec)
 int usleep(useconds_t usec)
 {
 {
-    rt_thread_mdelay(usec / 1000u);
+    if (rt_thread_self() != RT_NULL)
+    {
+        rt_thread_mdelay(usec / 1000u);
+    }
+    else
+    {
+        rt_hw_us_delay(usec / 1000u);
+    }
     rt_hw_us_delay(usec % 1000u);
     rt_hw_us_delay(usec % 1000u);
     return 0;
     return 0;
 }
 }