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

Feature/carla carma state integration #49

Merged
merged 26 commits into from
Mar 16, 2022
Merged
Changes from 1 commit
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
24 changes: 24 additions & 0 deletions carla-carma-integration/carla-carma-agent/agent/bridge.launch
Original file line number Diff line number Diff line change
Expand Up @@ -93,4 +93,28 @@
<param name='max_steering_degree' type="double" value="$(arg max_steering_degree)"/>
</node>

<!--
# route #
Set the vehicle route after localization.
-->
<node pkg='carla_carma_bridge' type='carma_carla_route' name='carma_carla_route' output='screen'>
<param name='role_name' type="str" value="$(arg role_name)"/>
chengyuan0124 marked this conversation as resolved.
Show resolved Hide resolved
</node>

<!--
# plugins #
Activate all registered plugins.
-->
<node pkg='carla_carma_bridge' type='carma_carla_plugins' name='carma_carla_plugins' output='screen'>
<param name='role_name' type="str" value="$(arg role_name)"/>
chengyuan0124 marked this conversation as resolved.
Show resolved Hide resolved
</node>

<!--
# guidance #
Set guidance to active once the plugins have been activated and the route has been selected.
-->
<node pkg='carla_carma_bridge' type='carma_carla_guidance' name='carma_carla_guidance' output='screen'>
<param name='role_name' type="str" value="$(arg role_name)"/>
chengyuan0124 marked this conversation as resolved.
Show resolved Hide resolved
</node>

</launch>