Skip to content

Commit

Permalink
update navigation.h variable documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
OAHC2022 authored Feb 2, 2023
1 parent 1ce0436 commit cc0d9cc
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 @@ -182,17 +182,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 cc0d9cc

Please sign in to comment.