Skip to content

Commit

Permalink
fix minor typo in App class (#246)
Browse files Browse the repository at this point in the history
Signed-off-by: Javier Balloffet <[email protected]>
  • Loading branch information
jballoffet authored May 15, 2024
1 parent 6948860 commit 6c9f031
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions andino_firmware/src/app.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ void App::cmd_read_encoders_and_imu_cb(int, char**) {
Serial.print(orientation.w(), 4);
Serial.print(" ");

// Retrive angular velocity (rad/s). See
// Retrieve angular velocity (rad/s). See
// https://learn.adafruit.com/adafruit-bno055-absolute-orientation-sensor/overview for further
// information.
imu::Vector<3> angular_velocity = bno055_imu_.getVector(Adafruit_BNO055::VECTOR_GYROSCOPE);
Expand All @@ -347,7 +347,7 @@ void App::cmd_read_encoders_and_imu_cb(int, char**) {
Serial.print(angular_velocity.z());
Serial.print(" ");

// Retrive linear acceleration (m/s^2). See
// Retrieve linear acceleration (m/s^2). See
// https://learn.adafruit.com/adafruit-bno055-absolute-orientation-sensor/overview for further
// information.
imu::Vector<3> linear_acceleration = bno055_imu_.getVector(Adafruit_BNO055::VECTOR_LINEARACCEL);
Expand Down

0 comments on commit 6c9f031

Please sign in to comment.