Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion AirLib/include/sensors/imu/ImuSimple.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ namespace airlib
//ref: An introduction to inertial navigation, Oliver J. Woodman, Sec 3.2, pp 10-12
//https://www.cl.cam.ac.uk/techreports/UCAM-CL-TR-696.pdf

real_T sqrt_dt = static_cast<real_T>(sqrt(std::max<TTimeDelta>(dt, params_.min_sample_time)));
real_T sqrt_dt = static_cast<real_T>(sqrt((std::max)(dt, params_.min_sample_time)));

// Gyrosocpe
//convert arw to stddev
Expand Down