mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-14 10:07:39 +08:00
mc_attitude_control: avoid using a static variable for last_run
and call hrt_absolute_time() only once.
This commit is contained in:
parent
54d1395206
commit
ca9c3b18ff
@ -1093,6 +1093,8 @@ MulticopterAttitudeControl::task_main()
|
||||
px4_pollfd_struct_t poll_fds = {};
|
||||
poll_fds.events = POLLIN;
|
||||
|
||||
hrt_abstime last_run = task_start;
|
||||
|
||||
while (!_task_should_exit) {
|
||||
|
||||
poll_fds.fd = _sensor_gyro_sub[_selected_gyro];
|
||||
@ -1117,9 +1119,9 @@ MulticopterAttitudeControl::task_main()
|
||||
|
||||
/* run controller on gyro changes */
|
||||
if (poll_fds.revents & POLLIN) {
|
||||
static uint64_t last_run = 0;
|
||||
float dt = (hrt_absolute_time() - last_run) / 1000000.0f;
|
||||
last_run = hrt_absolute_time();
|
||||
const hrt_abstime now = hrt_absolute_time();
|
||||
float dt = (now - last_run) / 1e6f;
|
||||
last_run = now;
|
||||
|
||||
/* guard against too small (< 2ms) and too large (> 20ms) dt's */
|
||||
if (dt < 0.002f) {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user