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(autoware_steer_offset_estimator)!: tier4_debug_msgs changed to autoware_internal_debug_msgs in autoware_steer_offset_estimator #9926

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
8 changes: 4 additions & 4 deletions vehicle/autoware_steer_offset_estimator/Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ Calculate yaw rate error and then calculate steering error recursively by least

### Output

| Name | Type | Description |
| ------------------------------------- | --------------------------------------- | ----------------------------- |
| `~/output/steering_offset` | `tier4_debug_msgs::msg::Float32Stamped` | steering offset |
| `~/output/steering_offset_covariance` | `tier4_debug_msgs::msg::Float32Stamped` | covariance of steering offset |
| Name | Type | Description |
| ------------------------------------- | --------------------------------------------------- | ----------------------------- |
| `~/output/steering_offset` | `autoware_internal_debug_msgs::msg::Float32Stamped` | steering offset |
| `~/output/steering_offset_covariance` | `autoware_internal_debug_msgs::msg::Float32Stamped` | covariance of steering offset |

## Launch Calibrator

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,16 +18,16 @@
#include "diagnostic_updater/diagnostic_updater.hpp"
#include "rclcpp/rclcpp.hpp"

#include "autoware_internal_debug_msgs/msg/float32_stamped.hpp"
#include "autoware_vehicle_msgs/msg/steering_report.hpp"
#include "geometry_msgs/msg/twist_stamped.hpp"
#include "tier4_debug_msgs/msg/float32_stamped.hpp"

#include <memory>

namespace autoware::steer_offset_estimator
{
using autoware_internal_debug_msgs::msg::Float32Stamped;
using geometry_msgs::msg::TwistStamped;
using tier4_debug_msgs::msg::Float32Stamped;
using Steering = autoware_vehicle_msgs::msg::SteeringReport;
using diagnostic_updater::DiagnosticStatusWrapper;
using diagnostic_updater::Updater;
Expand Down
2 changes: 1 addition & 1 deletion vehicle/autoware_steer_offset_estimator/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
<buildtool_depend>ament_cmake_auto</buildtool_depend>
<buildtool_depend>autoware_cmake</buildtool_depend>

<depend>autoware_internal_debug_msgs</depend>
<depend>autoware_universe_utils</depend>
<depend>autoware_vehicle_info_utils</depend>
<depend>autoware_vehicle_msgs</depend>
Expand All @@ -17,7 +18,6 @@
<depend>rclcpp</depend>
<depend>rclcpp_components</depend>
<depend>std_msgs</depend>
<depend>tier4_debug_msgs</depend>
<exec_depend>autoware_global_parameter_loader</exec_depend>
<exec_depend>autoware_pose2twist</exec_depend>

Expand Down
Loading