Skip to content

Commit

Permalink
Merge pull request #48 from ut-amrl/OAHC2022-patch-2
Browse files Browse the repository at this point in the history
update navigation.h variable documentation
  • Loading branch information
sadanand1120 authored May 5, 2023
2 parents 1d66b2e + cc0d9cc commit e54b078
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/navigation/navigation.h
Original file line number Diff line number Diff line change
Expand Up @@ -183,17 +183,17 @@ class Navigation {
// Publish a status message
void PublishNavStatus(const Eigen::Vector2f& carrot);

// Current robot location.
// Current map frame robot location (LocalizationCallback).
Eigen::Vector2f robot_loc_;
// Current robot orientation.
// Current map frame robot orientation (LocalizationCallback).
float robot_angle_;
// Current robot velocity.
Eigen::Vector2f robot_vel_;
// Current robot angular speed.
float robot_omega_;
// Odometry-reported robot location.
// Current odometry frame robot location (OdometryCallback).
Eigen::Vector2f odom_loc_;
// Odometry-reported robot angle.
// Current odometry frame robot angle (OdometryCallback).
float odom_angle_;
// Newest odometry message received.
Odom latest_odom_msg_;
Expand Down

0 comments on commit e54b078

Please sign in to comment.