File tree Expand file tree Collapse file tree
src/software/embedded/services Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -128,8 +128,8 @@ ImuService::ImuService() : initialized_(false)
128128 " stability will be poor." ;
129129 initialized_ = false ;
130130 }
131- Eigen::Vector2d deviation = calibrate_imu ();
132- LOG (INFO) << " error: " << deviation.x () << deviation.y () << " ." ;
131+ Eigen::Vector2d deviation = calibrate_imu ();
132+ LOG (INFO) << " error: " << deviation.x () << deviation.y () << " ." ;
133133}
134134
135135std::optional<ImuData> ImuService::poll ()
@@ -270,7 +270,7 @@ Eigen::Vector2d ImuService::transformLinearAcceleration(AngularVelocity omega,
270270
271271Eigen::Vector2d ImuService::calibrate_imu ()
272272{
273- LOG (INFO) << " Start IMU x,y calibration" << std::endl;
273+ LOG (INFO) << " Start IMU x,y calibration" << std::endl;
274274 Eigen::MatrixXd A (2 * 100 , 2 );
275275 Eigen::VectorXd b (2 * 100 );
276276 int valid = 0 ;
You can’t perform that action at this time.
0 commit comments