Skip to content

Commit 4ee77b2

Browse files
authored
feat: add control command gate param (autowarefoundation#1116)
* feat: add param control command gate (autowarefoundation#1086) * feat: add params Signed-off-by: TetsuKawa <kawaguchitnon@icloud.com> * feat: rename directory Signed-off-by: TetsuKawa <kawaguchitnon@icloud.com> * feat: follow change of universe Signed-off-by: TetsuKawa <kawaguchitnon@icloud.com> --------- Signed-off-by: TetsuKawa <kawaguchitnon@icloud.com> * fix: control command gate param fix (autowarefoundation#1094) feat: change param value Signed-off-by: TetsuKawa <kawaguchitnon@icloud.com> * feat: chnage builtint deceleration Signed-off-by: TetsuKawa <kawaguchitnon@icloud.com> --------- Signed-off-by: TetsuKawa <kawaguchitnon@icloud.com>
1 parent 7ae085b commit 4ee77b2

File tree

2 files changed

+58
-0
lines changed

2 files changed

+58
-0
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
/**:
2+
ros__parameters:
3+
rate: 10.0
4+
inputs: [stop, main, local, remote, in_lane_stop] # main is for autonomous, pull_over, comfortable_stop
5+
builtin_emergency_acceleration: -3.0
6+
diag_timeout_warn_duration: 1.0
7+
diag_timeout_error_duration: 2.0
8+
stop_check_duration: 1.0
9+
enable_command_limit_filter: true
10+
nominal_filter:
11+
vel_lim: 25.0
12+
reference_speed_points: [0.1, 0.3, 20.0, 30.0]
13+
steer_lim: [1.0, 1.0, 1.0, 0.8]
14+
steer_rate_lim: [1.0, 1.0, 1.0, 0.8]
15+
lon_acc_lim: [6.0, 6.0, 6.0, 6.0]
16+
lon_jerk_lim: [80.0, 30.0, 30.0, 30.0] # The first element is required for quick pedal changes when stopping and starting.
17+
lat_acc_lim: [5.0, 5.0, 5.0, 4.0]
18+
lat_jerk_lim: [7.0, 7.0, 7.0, 6.0]
19+
actual_steer_diff_lim: [1.0, 1.0, 1.0, 0.8]
20+
transition_filter:
21+
vel_lim: 50.0
22+
reference_speed_points: [20.0, 30.0]
23+
steer_lim: [1.0, 0.8]
24+
steer_rate_lim: [1.0, 0.8]
25+
lon_acc_lim: [1.0, 0.9]
26+
lon_jerk_lim: [0.5, 0.4]
27+
lat_acc_lim: [2.0, 1.8]
28+
lat_jerk_lim: [7.0, 6.0]
29+
actual_steer_diff_lim: [1.0, 0.8]
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
/**:
2+
ros__parameters:
3+
rate: 10.0
4+
inputs: [in_lane_stop] # main is for autonomous, pull_over, comfortable_stop
5+
builtin_emergency_acceleration: -3.0
6+
diag_timeout_warn_duration: 1.0
7+
diag_timeout_error_duration: 2.0
8+
stop_check_duration: 1.0
9+
enable_command_limit_filter: true
10+
nominal_filter:
11+
vel_lim: 25.0
12+
reference_speed_points: [0.1, 0.3, 20.0, 30.0]
13+
steer_lim: [1.0, 1.0, 1.0, 0.8]
14+
steer_rate_lim: [1.0, 1.0, 1.0, 0.8]
15+
lon_acc_lim: [6.0, 6.0, 6.0, 6.0]
16+
lon_jerk_lim: [80.0, 30.0, 30.0, 30.0] # The first element is required for quick pedal changes when stopping and starting.
17+
lat_acc_lim: [5.0, 5.0, 5.0, 4.0]
18+
lat_jerk_lim: [7.0, 7.0, 7.0, 6.0]
19+
actual_steer_diff_lim: [1.0, 1.0, 1.0, 0.8]
20+
transition_filter:
21+
vel_lim: 50.0
22+
reference_speed_points: [20.0, 30.0]
23+
steer_lim: [1.0, 0.8]
24+
steer_rate_lim: [1.0, 0.8]
25+
lon_acc_lim: [1.0, 0.9]
26+
lon_jerk_lim: [0.5, 0.4]
27+
lat_acc_lim: [2.0, 1.8]
28+
lat_jerk_lim: [7.0, 6.0]
29+
actual_steer_diff_lim: [1.0, 0.8]

0 commit comments

Comments
 (0)