Fix msDelay() function to not sleep 10 times too long.
This commit is contained in:
parent
8674b327f0
commit
500127f922
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=25033
1 changed files with 1 additions and 1 deletions
|
@ -164,7 +164,7 @@ diff -u --new-file -r ../R1/examples/freebsd/lib/serial.c ./examples/freebsd/lib
|
|||
+//
|
||||
+void msDelay(int len)
|
||||
+{
|
||||
+ usleep(len * 10000);
|
||||
+ usleep(len * 1000);
|
||||
+}
|
||||
+
|
||||
+
|
||||
|
|
Loading…
Reference in a new issue