Skip to content

Commit

Permalink
chore(rtc_interface): update module name
Browse files Browse the repository at this point in the history
Signed-off-by: satoshi-ota <[email protected]>
  • Loading branch information
satoshi-ota committed May 30, 2024
1 parent cba866f commit 6245b76
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions planning/rtc_interface/src/rtc_interface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,9 @@ Module getModuleType(const std::string & module_name)
module.type = Module::AVOIDANCE_BY_LC_LEFT;
} else if (module_name == "avoidance_by_lane_change_right") {
module.type = Module::AVOIDANCE_BY_LC_RIGHT;
} else if (module_name == "avoidance_left") {
} else if (module_name == "static_obstacle_avoidance_left") {
module.type = Module::AVOIDANCE_LEFT;
} else if (module_name == "avoidance_right") {
} else if (module_name == "static_obstacle_avoidance_right") {
module.type = Module::AVOIDANCE_RIGHT;
} else if (module_name == "goal_planner") {
module.type = Module::GOAL_PLANNER;
Expand Down

0 comments on commit 6245b76

Please sign in to comment.