mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-28 13:44:06 +08:00
vmount: remove output rate-limiting
It causes missed input changes. This reverts 73d23742ea5c297f262c0e03caec61ee482977b1.
This commit is contained in:
parent
5e826eaa27
commit
48edaa7ef6
@ -249,7 +249,6 @@ static int vmount_thread_main(int argc, char *argv[])
|
||||
g_thread_data = &thread_data;
|
||||
|
||||
int last_active = 0;
|
||||
hrt_abstime last_output_update = 0;
|
||||
|
||||
while (!thread_should_exit) {
|
||||
|
||||
@ -376,21 +375,16 @@ static int vmount_thread_main(int argc, char *argv[])
|
||||
}
|
||||
}
|
||||
|
||||
hrt_abstime now = hrt_absolute_time();
|
||||
if (now - last_output_update > 10000) { // rate-limit the update of outputs
|
||||
last_output_update = now;
|
||||
//update output
|
||||
int ret = thread_data.output_obj->update(control_data);
|
||||
|
||||
//update output
|
||||
int ret = thread_data.output_obj->update(control_data);
|
||||
|
||||
if (ret) {
|
||||
PX4_ERR("failed to write output (%i)", ret);
|
||||
break;
|
||||
}
|
||||
|
||||
thread_data.output_obj->publish();
|
||||
if (ret) {
|
||||
PX4_ERR("failed to write output (%i)", ret);
|
||||
break;
|
||||
}
|
||||
|
||||
thread_data.output_obj->publish();
|
||||
|
||||
} else {
|
||||
//wait for parameter changes. We still need to wake up regularily to check for thread exit requests
|
||||
usleep(1e6);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user