Skip to content
Snippets Groups Projects
Commit 8aaf4d1f authored by Jongwon Lee's avatar Jongwon Lee
Browse files

fix typo in gyro_drift_std

parent f396f0cd
No related branches found
No related tags found
2 merge requests!55Resolve "typo in gyro_drift_std",!49Draft: Resolve "Adapt to new sensor constructors in core"
......@@ -112,7 +112,7 @@ void ProcessorImu::configure(SensorBasePtr _sensor)
sensor_imu_ = std::static_pointer_cast<SensorImu>(_sensor);
auto acc_drift_std = sensor_imu_->getAbRateStdev();
auto gyro_drift_std = sensor_imu_->getAbRateStdev();
auto gyro_drift_std = sensor_imu_->getWbRateStdev();
ArrayXd imu_drift_sigmas(6);
imu_drift_sigmas << acc_drift_std, acc_drift_std, acc_drift_std, gyro_drift_std, gyro_drift_std, gyro_drift_std;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment