Skip to content

Commit

Permalink
Merge pull request #26 from f3wenbo/melodic-devel
Browse files Browse the repository at this point in the history
Fix ROS_INFO typo
  • Loading branch information
s-katsu authored Sep 9, 2021
2 parents 836b2fa + b550a57 commit 09c94db
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/ros_whill.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ bool ros_srv_set_speed_profile(ros_whill::SetSpeedProfile::Request &req, ros_whi
profile.turn.acc = convert_radpss_to_whill_acc(whill->tread, req.turn.acc);
profile.turn.dec = convert_radpss_to_whill_acc(whill->tread, req.turn.dec);

ROS_INFO("Setting Spped Profile");
ROS_INFO("Setting Speed Profile");
ROS_INFO("Forward\tSpeed:%d,Acc:%d,Dec:%d", profile.forward.speed, profile.forward.acc, profile.forward.dec);
ROS_INFO("Bacward\tSpeed:%d,Acc:%d,Dec:%d", profile.backward.speed, profile.backward.acc, profile.backward.dec);
ROS_INFO("Turn\tSpeed:%d,Acc:%d,Dec:%d\n", profile.turn.speed, profile.turn.acc, profile.turn.dec);
Expand Down Expand Up @@ -550,4 +550,4 @@ int main(int argc, char **argv)
spinner.stop();

return 0;
}
}

0 comments on commit 09c94db

Please sign in to comment.