Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes To Allow The README Instructions To Work As Advertised #83

Open
wants to merge 2 commits into
base: kinetic-devel
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion autorally_gazebo/launch/autoRallyJumpGazeboSim.launch
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ rosservice call autorally_platform/gazebo/delete_model '{model_name: autoRallyPl
<!-- Load the joint controllers. One of these publishes the joint states
to joint_states. -->
<node name="controller_spawner" pkg="controller_manager" type="spawner"
args="$(find autorally_gazebo)/config/autoRallyPlatformJointCtrlrParams.yaml"/>
args="$(find autorally_gazebo)/config/autoRallyPlatformJointCtrlrParams.yaml --timeout 120"/>

<!-- Control the steering, axle, and shock absorber joints. -->
<node name="autorally_controller" pkg="autorally_gazebo"
Expand Down
2 changes: 1 addition & 1 deletion autorally_gazebo/launch/autoRallyTrackCCRFGazeboSim.launch
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ limitations under the License.

<!-- load controllers -->
<node name="controller_spawner" pkg="controller_manager" type="spawner"
args="$(find autorally_gazebo)/config/autoRallyPlatformJointCtrlrParams.yaml"/>
args="$(find autorally_gazebo)/config/autoRallyPlatformJointCtrlrParams.yaml --timeout 120"/>

<!-- Control the steering, axle, and shock absorber joints. -->
<node name="autorally_controller" pkg="autorally_gazebo"
Expand Down
11 changes: 10 additions & 1 deletion autorally_gazebo/launch/autoRallyTrackGazeboSim.launch
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ limitations under the License.

<!-- load controllers -->
<node name="controller_spawner" pkg="controller_manager" type="spawner"
args="$(find autorally_gazebo)/config/autoRallyPlatformJointCtrlrParams.yaml"/>
args="$(find autorally_gazebo)/config/autoRallyPlatformJointCtrlrParams.yaml --timeout 120"/>

<!-- Control the steering, axle, and shock absorber joints. -->
<node name="autorally_controller" pkg="autorally_gazebo"
Expand All @@ -84,6 +84,15 @@ limitations under the License.
type="ground_truth_republisher.py" output="screen">
</node>


<!-- Run state estimator -->
<include file="$(find autorally_core)/launch/stateEstimator.launch">
<arg name="sim" value="true"/>
<arg name="InvertY" value="false"/>
<arg name="InvertZ" value="false"/>
<arg name="FixedInitialPose" value="true"/>
</include>

<include file="$(find autorally_core)/launch/autorally_core_manager.launch" />
<include file="$(find autorally_control)/launch/joystickController.launch" />
</launch>
2 changes: 1 addition & 1 deletion autorally_gazebo/launch/singlePlatform.launch
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ limitations under the License.

<!-- load joint controllers -->
<node name="controller_spawner" pkg="controller_manager" type="spawner"
args="$(find autorally_gazebo)/config/autoRallyPlatformJointCtrlrParams.yaml"/>
args="$(find autorally_gazebo)/config/autoRallyPlatformJointCtrlrParams.yaml --timeout 120"/>

<!-- Control the steering, axle, and shock absorber joints. -->
<node name="autorally_controller" pkg="autorally_gazebo"
Expand Down