-
Notifications
You must be signed in to change notification settings - Fork 672
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into change-merger-priority
- Loading branch information
Showing
212 changed files
with
5,205 additions
and
5,378 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
34 changes: 34 additions & 0 deletions
34
common/tier4_autoware_utils/include/tier4_autoware_utils/ros/uuid_helper.hpp
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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
// Copyright 2022 Tier IV, Inc. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
#ifndef TIER4_AUTOWARE_UTILS__ROS__UUID_HELPER_HPP_ | ||
#define TIER4_AUTOWARE_UTILS__ROS__UUID_HELPER_HPP_ | ||
|
||
#include <unique_identifier_msgs/msg/uuid.hpp> | ||
|
||
#include <string> | ||
|
||
namespace tier4_autoware_utils | ||
{ | ||
inline std::string toHexString(const unique_identifier_msgs::msg::UUID & id) | ||
{ | ||
std::stringstream ss; | ||
for (auto i = 0; i < 16; ++i) { | ||
ss << std::hex << std::setfill('0') << std::setw(2) << +id.uuid[i]; | ||
} | ||
return ss.str(); | ||
} | ||
} // namespace tier4_autoware_utils | ||
|
||
#endif // TIER4_AUTOWARE_UTILS__ROS__UUID_HELPER_HPP_ |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,6 +6,5 @@ autoware_package() | |
|
||
ament_auto_package( | ||
INSTALL_TO_SHARE | ||
config | ||
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
5 changes: 0 additions & 5 deletions
5
launch/tier4_control_launch/config/common/nearest_search.param.yaml
This file was deleted.
Oops, something went wrong.
11 changes: 0 additions & 11 deletions
11
...r4_control_launch/config/obstacle_collision_checker/obstacle_collision_checker.param.yaml
This file was deleted.
Oops, something went wrong.
20 changes: 0 additions & 20 deletions
20
...nch/config/operation_mode_transition_manager/operation_mode_transition_manager.param.yaml
This file was deleted.
Oops, something went wrong.
3 changes: 0 additions & 3 deletions
3
launch/tier4_control_launch/config/shift_decider/shift_decider.param.yaml
This file was deleted.
Oops, something went wrong.
77 changes: 0 additions & 77 deletions
77
launch/tier4_control_launch/config/trajectory_follower/lateral_controller.param.yaml
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.