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

feat!: change from autoware_auto_msgs to autoware_msgs #122

Merged
merged 12 commits into from
Jun 4, 2024
Merged
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

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions tier4_auto_msgs_converter/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@

<buildtool_depend>ament_cmake_auto</buildtool_depend>

<depend>autoware_auto_perception_msgs</depend>
<depend>autoware_auto_planning_msgs</depend>
<depend>autoware_auto_system_msgs</depend>
<depend>autoware_auto_vehicle_msgs</depend>
<depend>autoware_perception_msgs</depend>
<depend>autoware_planning_msgs</depend>
<depend>autoware_system_msgs</depend>
<depend>autoware_vehicle_msgs</depend>
<depend>tier4_perception_msgs</depend>
<depend>tier4_planning_msgs</depend>
<depend>tier4_system_msgs</depend>
Expand Down
2 changes: 1 addition & 1 deletion tier4_perception_msgs/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ rosidl_generate_interfaces(${PROJECT_NAME}
"msg/traffic_light/TrafficLight.msg"
"msg/traffic_light/TrafficLightArray.msg"
DEPENDENCIES
autoware_auto_perception_msgs
autoware_perception_msgs
builtin_interfaces
geometry_msgs
sensor_msgs
Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
autoware_auto_perception_msgs/DetectedObject object
autoware_perception_msgs/DetectedObject object
Feature feature
2 changes: 1 addition & 1 deletion tier4_perception_msgs/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

<build_depend>rosidl_default_generators</build_depend>

<depend>autoware_auto_perception_msgs</depend>
<depend>autoware_perception_msgs</depend>
<depend>builtin_interfaces</depend>
<depend>geometry_msgs</depend>
<depend>sensor_msgs</depend>
Expand Down
2 changes: 2 additions & 0 deletions tier4_planning_msgs/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ rosidl_generate_interfaces(${PROJECT_NAME}
"msg/PathChangeModuleArray.msg"
"msg/PathChangeModuleId.msg"
"msg/PathPoint.msg"
"msg/PathPointWithLaneId.msg"
"msg/PathWithLaneId.msg"
"msg/RerouteAvailability.msg"
"msg/RouteState.msg"
"msg/Scenario.msg"
Expand Down
2 changes: 2 additions & 0 deletions tier4_planning_msgs/msg/PathPointWithLaneId.msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
autoware_planning_msgs/PathPoint point
int64[] lane_ids
4 changes: 4 additions & 0 deletions tier4_planning_msgs/msg/PathWithLaneId.msg
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
std_msgs/Header header
tier4_planning_msgs/PathPointWithLaneId[] points
geometry_msgs/Point[] left_bound
geometry_msgs/Point[] right_bound
Loading