Skip to content

Commit

Permalink
Adds missing param max_velocity.
Browse files Browse the repository at this point in the history
  • Loading branch information
henningkayser committed Jul 21, 2017
1 parent b5f9b69 commit 1e4934a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/ros_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ bool parse_args(ProgArgs &args)
}
ros::param::param(REVERSE_PORT_ARG, args.reverse_port, int32_t(50001));
ros::param::param(MAX_VEL_CHANGE_ARG, args.max_vel_change, 15.0); // rad/s
ros::param::param(MAX_VEL_CHANGE_ARG, args.max_velocity, 10.0);
ros::param::param(ROS_CONTROL_ARG, args.use_ros_control, false);
ros::param::param(PREFIX_ARG, args.prefix, std::string());
ros::param::param(BASE_FRAME_ARG, args.base_frame, args.prefix + "base_link");
Expand Down

0 comments on commit 1e4934a

Please sign in to comment.