-
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Make the sim be headless, refactor some nav logging, update rover par…
…ts, fix failure id warnings, add integration test
- Loading branch information
Showing
25 changed files
with
177 additions
and
166 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,20 @@ | ||
<launch> | ||
<rosparam command="load" file="$(find mrover)/config/simulator/simulator.yaml" /> | ||
<arg name="headless" default="false"/> | ||
|
||
<include file="$(find mrover)/launch/autonomy.launch"> | ||
<arg name="sim" value="true" /> | ||
<arg name="ekf_start_delay" value="1" /> | ||
</include> | ||
<rosparam command="load" file="$(find mrover)/config/simulator/simulator.yaml"/> | ||
|
||
<node pkg="nodelet" type="nodelet" name="nodelet_manager" required="true" | ||
args="manager" output="screen" /> | ||
<include file="$(find mrover)/launch/autonomy.launch"> | ||
<arg name="sim" value="true"/> | ||
<arg name="ekf_start_delay" value="1"/> | ||
</include> | ||
|
||
<node pkg="nodelet" type="nodelet" name="simulator_nodelet" | ||
args="load mrover/SimulatorNodelet nodelet_manager" output="screen" /> | ||
<node pkg="nodelet" type="nodelet" name="nodelet_manager" required="true" | ||
args="manager" output="screen"/> | ||
|
||
<node name="arm_controller" pkg="mrover" type="arm_controller" output="screen" /> | ||
</launch> | ||
<node pkg="nodelet" type="nodelet" name="simulator_nodelet" | ||
args="load mrover/SimulatorNodelet nodelet_manager" output="screen"> | ||
<param name="headless" value="$(arg headless)"/> | ||
</node> | ||
|
||
<node name="arm_controller" pkg="mrover" type="arm_controller" output="screen"/> | ||
</launch> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.