Skip to content

Commit

Permalink
launch file modifications
Browse files Browse the repository at this point in the history
  • Loading branch information
garethellis0 committed Jun 6, 2016
1 parent 39e2400 commit a4663ce
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/drivers/src/elsa_driver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ static const int SECOND = 1000000;


// If rotation is greater or less then (-pi, pi), constrain it
double bound_rotation(double rotation, max_turn_rate){
double bound_rotation(double rotation, double max_turn_rate){
if(rotation > max_turn_rate){
return max_turn_rate;
}else if(rotation < -max_turn_rate){
Expand Down
2 changes: 1 addition & 1 deletion src/launch/go_forward.launch
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<node pkg="decision" type="move_straight_line"
name="move_straight_line" output="screen">

<param name="explicit_turn_threshold" value="0.2"/>
<param name="explicit_turn_threshold" value="0.44"/>
<remap from="destination" to="temp_waypoint"/>

</node>
Expand Down

0 comments on commit a4663ce

Please sign in to comment.