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

chore(rtc_controller): update module name #114

Merged
merged 1 commit into from
May 31, 2024
Merged
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
4 changes: 2 additions & 2 deletions autoware_iv_external_api_adaptor/src/rtc_controller.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,8 @@
std::make_unique<RTCModule>(this, "external_request_lane_change_left");
ext_request_lane_change_right_ =
std::make_unique<RTCModule>(this, "external_request_lane_change_right");
avoidance_left_ = std::make_unique<RTCModule>(this, "avoidance_left");
avoidance_right_ = std::make_unique<RTCModule>(this, "avoidance_right");
avoidance_left_ = std::make_unique<RTCModule>(this, "static_obstacle_avoidance_left");
avoidance_right_ = std::make_unique<RTCModule>(this, "static_obstacle_avoidance_right");
avoidance_by_lc_left_ = std::make_unique<RTCModule>(this, "avoidance_by_lane_change_left");
avoidance_by_lc_right_ = std::make_unique<RTCModule>(this, "avoidance_by_lane_change_right");
goal_planner_ = std::make_unique<RTCModule>(this, "goal_planner");
Expand Down Expand Up @@ -152,7 +152,7 @@
}
}

void RTCController::checkInfDistance(CooperateStatus & status) // Temporary fix for ROS2 humble

Check warning on line 155 in autoware_iv_external_api_adaptor/src/rtc_controller.cpp

View workflow job for this annotation

GitHub Actions / spell-check-differential

Unknown word (ROS2)
{
if (!std::isfinite(status.start_distance)) {
status.start_distance = -100000.0;
Expand Down
Loading