forked from autowarefoundation/autoware_launch
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request autowarefoundation#561 from tier4/feat/merge-v2.3.1
chore: merge v2.3.1
- Loading branch information
Showing
29 changed files
with
187 additions
and
121 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
name: comment-on-pr | ||
|
||
on: | ||
pull_request: | ||
types: | ||
- opened | ||
branches: | ||
- beta/v[0-9]+.[0-9]+.[0-9]+ | ||
|
||
jobs: | ||
comment: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Create comments | ||
run: | | ||
cat << 'EOF' > comments | ||
### betaブランチへマージする際のガイドライン | ||
通常は`Squash and merge`を使用してください。 | ||
ただし、cherry-pickで複数の変更を取り込むときには、変更履歴を残すために`Create a merge commit`を使用してください。 | ||
### Merging guidelines for the beta branch | ||
Please use `Squash and merge` as the default. | ||
However, when incorporating multiple changes with cherry-pick, use a `Create a merge commit` to preserve the changes in the history. | ||
EOF | ||
- name: Post comments | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
URL: ${{ github.event.pull_request.html_url }} | ||
run: gh pr comment -F ./comments "${URL}" |
12 changes: 6 additions & 6 deletions
12
...ig/control/operation_mode_transition_manager/operation_mode_transition_manager.param.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,26 @@ | ||
/**: | ||
ros__parameters: | ||
transition_timeout: 10.0 | ||
transition_timeout: 6.0 | ||
frequency_hz: 10.0 | ||
|
||
# set true if you want to engage the autonomous driving mode while the vehicle is driving. If set to false, it will deny Engage in any situation where the vehicle speed is not zero. Note that if you use this feature without adjusting the parameters, it may cause issues like sudden deceleration. Before using, please ensure the engage condition and the vehicle_cmd_gate transition filter are appropriately adjusted. | ||
enable_engage_on_driving: false | ||
enable_engage_on_driving: true | ||
|
||
check_engage_condition: false # set false if you do not want to care about the engage condition. | ||
check_engage_condition: true # set false if you do not want to care about the engage condition. | ||
nearest_dist_deviation_threshold: 3.0 # [m] for finding nearest index | ||
nearest_yaw_deviation_threshold: 1.57 # [rad] for finding nearest index | ||
engage_acceptable_limits: | ||
allow_autonomous_in_stopped: true # no check if the velocity is zero, always allowed. | ||
dist_threshold: 1.5 | ||
dist_threshold: 0.5 | ||
yaw_threshold: 0.524 | ||
speed_upper_threshold: 10.0 | ||
speed_lower_threshold: -10.0 | ||
acc_threshold: 1.5 | ||
lateral_acc_threshold: 1.0 | ||
lateral_acc_diff_threshold: 0.5 | ||
stable_check: | ||
duration: 0.1 | ||
dist_threshold: 1.5 | ||
duration: 3.0 | ||
dist_threshold: 0.5 | ||
speed_upper_threshold: 2.0 | ||
speed_lower_threshold: -2.0 | ||
yaw_threshold: 0.262 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...re_launch/config/perception/object_recognition/prediction/map_based_prediction.param.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
10 changes: 5 additions & 5 deletions
10
...onfig/perception/obstacle_segmentation/ground_segmentation/ground_segmentation.param.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,4 +5,4 @@ | |
occupied_to_free: 0.05 | ||
free_to_occupied: 0.2 | ||
free_to_free: 0.8 | ||
v_ratio: 10.0 | ||
v_ratio: 4.5 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.