mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-07-09 00:30:34 +08:00
Replacing usleep with px4_usleep
This is a step towards isolating time from the system.
This commit is contained in:
@@ -190,7 +190,7 @@ void Module::run()
|
||||
} else if (pret < 0) {
|
||||
// this is undesirable but not much we can do
|
||||
PX4_ERR("poll error %d, %d", pret, errno);
|
||||
usleep(50000);
|
||||
px4_usleep(50000);
|
||||
continue;
|
||||
|
||||
} else if (fds[0].revents & POLLIN) {
|
||||
|
||||
Reference in New Issue
Block a user