Skip to content

Commit

Permalink
launch_segbot_base: fix test failures (#105)
Browse files Browse the repository at this point in the history
  • Loading branch information
jack-oquin committed Feb 27, 2018
1 parent 45bdb69 commit d6691f5
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 12 deletions.
2 changes: 1 addition & 1 deletion launch_segbot_base/launch/common.launch
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
<!-- interruptable physical and logical navigation -->
<include file="$(find segbot_navigation)/launch/interruptable_navigation.launch">
<arg name="global_frame" value="$(arg global_frame)" />
<arg name="config" default="$(arg move_base_config)" />
<arg name="move_base_config" value="$(arg move_base_config)" />
</include>

<!-- knowledge representation, reasoning, and planing -->
Expand Down
6 changes: 3 additions & 3 deletions launch_segbot_base/launch/v2.launch
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
<!-- segbot_v2 base -->
<launch>

<arg name="gui" value="true" />

<!-- common components -->
<include file="$(find launch_segbot_base)/launch/common.launch">
<arg name="gui" default="$(arg gui)" />
<arg name="move_base_config" default="segbotv2" />
</include>

Expand All @@ -11,7 +14,4 @@
<arg name="gui" value="$(arg gui)" />
</include>

<!-- other devices -->
<include file="$(find segbot_bringup)/launch/includes/auxiliary.segbot_v2.launch.xml"/>

</launch>
6 changes: 3 additions & 3 deletions launch_segbot_base/launch/v3.launch
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
<!-- segbot_v3 base -->
<launch>

<arg name="gui" value="true" />

<!-- common components -->
<include file="$(find launch_segbot_base)/launch/common.launch">
<arg name="gui" default="$(arg gui)" />
<arg name="move_base_config" value="segbotv3" />
</include>

Expand All @@ -11,7 +14,4 @@
<arg name="gui" value="$(arg gui)" />
</include>

<!-- other devices -->
<include file="$(find segbot_bringup)/launch/includes/auxiliary.segbot_v3.launch.xml"/>

</launch>
4 changes: 3 additions & 1 deletion launch_segbot_base/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,13 @@
<buildtool_depend>catkin</buildtool_depend>

<exec_depend>bwi_kr_execution</exec_depend>
<exec_depend>bwi_logging</exec_depend>
<exec_depend>bwi_rqt_plugins</exec_depend>
<exec_depend>bwi_virtour</exec_depend>
<exec_depend>multi_level_map_server</exec_depend>
<exec_depend>multi_level_map_utils</exec_depend>
<exec_depend>segbot_bringup</exec_depend> <!-- eliminate this depend -->
<exec_depend>segbot_bringup</exec_depend>
<exec_depend>segbot_led</exec_depend>
<exec_depend>segbot_navigation</exec_depend>
<exec_depend>utexas_gdc</exec_depend>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
command="$(find xacro)/xacro '$(arg urdf_file)' use_full_gazebo_model:=$(arg use_full_gazebo_model)" />

<!-- launch the tf tree -->
<node pkg="robot_state_publisher" type="robot_state_publisher" name="robot_state_publisher">
<node pkg="robot_state_publisher" type="robot_state_publisher"
name="robot_state_publisher">
<param name="publish_frequency" type="double" value="5.0" />
</node>

Expand Down
5 changes: 2 additions & 3 deletions segbot_bringup/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,8 @@
<exec_depend>segbot_description</exec_depend>
<exec_depend>segbot_sensors</exec_depend>
<exec_depend>segway_rmp</exec_depend>
<!-- segway_v3 packages commented out until released publicly -->
<!-- <exec_depend>segway_msgs</exec_depend> -->
<!-- <exec_depend>segway_ros</exec_depend> -->
<exec_depend>segway_msgs</exec_depend>
<exec_depend>segway_ros</exec_depend>
<exec_depend>sensor_msgs</exec_depend>
<exec_depend>stop_base</exec_depend>
<exec_depend>tf</exec_depend>
Expand Down

0 comments on commit d6691f5

Please sign in to comment.