Skip to content
This repository has been archived by the owner on Mar 27, 2023. It is now read-only.

Commit

Permalink
refactor: rename acc topic (#398)
Browse files Browse the repository at this point in the history
* refactor: rename acc topic

Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com>

* remove lpf_gain param

Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com>

Signed-off-by: Takamasa Horibe <horibe.takamasa@gmail.com>
  • Loading branch information
TakaHoribe authored and 0x126 committed Sep 20, 2022
1 parent 913abba commit 7c8bba4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions control_launch/launch/control.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ def launch_setup(context, *args, **kwargs):
("~/input/reference_trajectory", "/planning/scenario_planning/trajectory"),
("~/input/current_odometry", "/localization/kinematic_state"),
("~/input/current_steering", "/vehicle/status/steering_status"),
("~/input/current_accel", "/localization/acceleration"),
("~/output/predicted_trajectory", "lateral/predicted_trajectory"),
("~/output/lateral_diagnostic", "lateral/diagnostic"),
("~/output/slope_angle", "longitudinal/slope_angle"),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@
min_object_accel_for_rss: -1.0 # front obstacle's acceleration to calculate RSS distance [m/ss]
safe_distance_margin : 6.0 # This is also used as a stop margin [m]

lpf_gain_for_accel: 0.2 # gain of low pass filter for ego acceleration [-]

nearest_dist_deviation_threshold: 3.0 # [m] for finding nearest index
nearest_yaw_deviation_threshold: 1.57 # [rad] for finding nearest index
min_behavior_stop_margin: 3.0 # [m]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,7 @@ def generate_launch_description():
remappings=[
("~/input/trajectory", "obstacle_avoidance_planner/trajectory"),
("~/input/odometry", "/localization/kinematic_state"),
("~/input/acceleration", "/localization/acceleration"),
("~/input/objects", "/perception/object_recognition/objects"),
("~/output/trajectory", "/planning/scenario_planning/lane_driving/trajectory"),
("~/output/velocity_limit", "/planning/scenario_planning/max_velocity_candidates"),
Expand Down Expand Up @@ -191,6 +192,7 @@ def generate_launch_description():
"/planning/scenario_planning/clear_velocity_limit",
),
("~/output/trajectory", "/planning/scenario_planning/lane_driving/trajectory"),
("~/input/acceleration", "/localization/acceleration"),
(
"~/input/pointcloud",
"/perception/obstacle_segmentation/pointcloud",
Expand Down

0 comments on commit 7c8bba4

Please sign in to comment.