Skip to content

Commit

Permalink
fix(trajectory_follower): change stop check speed threshold to almost…
Browse files Browse the repository at this point in the history
… 0 (#473)

* fix(trajectory_follower): change stop check speed threshold to 0

Signed-off-by: Takamasa Horibe <[email protected]>

* change default parameter

Signed-off-by: Takamasa Horibe <[email protected]>
  • Loading branch information
TakaHoribe authored Mar 23, 2022
1 parent 4bd241b commit 007487a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@
steering_lpf_cutoff_hz: 3.0 # cutoff frequency of lowpass filter for steering command [Hz]
error_deriv_lpf_cutoff_hz: 5.0

# stop state
stop_state_entry_ego_speed: 0.2
stop_state_entry_target_speed: 0.5
# stop state: steering command is kept in the previous value in the stop state.
stop_state_entry_ego_speed: 0.001
stop_state_entry_target_speed: 0.001

# vehicle parameters
mass_kg: 2400.0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@
steering_lpf_cutoff_hz: 3.0 # cutoff frequency of lowpass filter for steering command [Hz]
error_deriv_lpf_cutoff_hz: 5.0

# stop state
stop_state_entry_ego_speed: 0.2
stop_state_entry_target_speed: 0.5
# stop state: steering command is kept in the previous value in the stop state.
stop_state_entry_ego_speed: 0.001
stop_state_entry_target_speed: 0.001

# vehicle parameters
vehicle:
Expand Down

0 comments on commit 007487a

Please sign in to comment.