Merge pull request #3000 from PX4/dt_limit

Quick fix for broken master
This commit is contained in:
Roman Bapst 2015-10-15 16:16:24 +02:00
commit b31c341f92
1 changed files with 1 additions and 1 deletions

View File

@ -897,7 +897,7 @@ int position_estimator_inav_thread_main(int argc, char *argv[])
}
float dt = t_prev > 0 ? (t - t_prev) / 1000000.0f : 0.0f;
dt = fmaxf(fminf(0.02, dt), 0.002); // constrain dt from 2 to 20 ms
dt = fmaxf(fminf(0.02, dt), 0.0002); // constrain dt from 0.2 to 20 ms
t_prev = t;
/* increase EPH/EPV on each step */