Skip to content

Commit

Permalink
feat(autonomous_emergency_braking): enable AEB stop in vehicle_cmd_ga…
Browse files Browse the repository at this point in the history
…te and diag_graph_agg (#1099)

* enable emergency handling for AEB stop

Signed-off-by: Daniel Sanchez <[email protected]>

* update AEB params to work better at 30 kmph

Signed-off-by: Daniel Sanchez <[email protected]>

---------

Signed-off-by: Daniel Sanchez <[email protected]>
  • Loading branch information
danielsanchezaran authored Jul 31, 2024
1 parent 473e7e9 commit b947098
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
ros__parameters:
# Ego path calculation
use_predicted_trajectory: true
use_imu_path: false
use_imu_path: true
use_pointcloud_data: true
use_predicted_object_data: false
use_object_velocity_calculation: true
min_generated_path_length: 0.5
imu_prediction_time_horizon: 1.5
imu_prediction_time_interval: 0.1
mpc_prediction_time_horizon: 1.5
mpc_prediction_time_horizon: 4.5
mpc_prediction_time_interval: 0.1

# Debug
Expand All @@ -29,7 +29,7 @@

# Point cloud clustering
cluster_tolerance: 0.15 #[m]
cluster_minimum_height: 0.0
cluster_minimum_height: 0.1
minimum_cluster_size: 10
maximum_cluster_size: 10000

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
ros__parameters:
update_rate: 10.0
system_emergency_heartbeat_timeout: 0.5
use_emergency_handling: false
use_emergency_handling: true
check_external_emergency_heartbeat: $(var check_external_emergency_heartbeat)
use_start_request: false
enable_cmd_limit_filter: true
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/**:
ros__parameters:
update_rate: 30
target_acceleration: -2.5
target_jerk: -1.5
target_acceleration: -3.0
target_jerk: -3.0

0 comments on commit b947098

Please sign in to comment.