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#690 from tier4/sync-awf-latest
chore: sync awf-latest
- Loading branch information
Showing
141 changed files
with
738 additions
and
6,412 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,31 @@ | ||
name: sync-awf-autoware-launch | ||
|
||
on: | ||
schedule: | ||
- cron: 0 0 * * * | ||
workflow_dispatch: | ||
|
||
jobs: | ||
sync-awf-latest: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Generate token | ||
id: generate-token | ||
uses: tibdex/github-app-token@v1 | ||
with: | ||
app_id: ${{ secrets.APP_ID }} | ||
private_key: ${{ secrets.PRIVATE_KEY }} | ||
|
||
- name: Run sync-branches | ||
uses: autowarefoundation/autoware-github-actions/sync-branches@v1 | ||
with: | ||
token: ${{ steps.generate-token.outputs.token }} | ||
base-branch: awf-latest | ||
sync-pr-branch: sync-awf-autoware-launch | ||
sync-target-repository: https://github.com/autowarefoundation/autoware_launch.git | ||
sync-target-branch: main | ||
pr-title: "chore: sync awf/autoware_launch" | ||
pr-labels: | | ||
bot | ||
sync-awf-autoware-launch | ||
auto-merge-method: merge |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
60 changes: 0 additions & 60 deletions
60
autoware_api_launch/launch/include/external_api_adaptor.launch.py
This file was deleted.
Oops, something went wrong.
44 changes: 0 additions & 44 deletions
44
autoware_api_launch/launch/include/internal_api_adaptor.launch.py
This file was deleted.
Oops, something went wrong.
20 changes: 0 additions & 20 deletions
20
autoware_api_launch/launch/include/internal_api_relay.launch.xml
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -11,6 +11,7 @@ endif() | |
|
||
ament_auto_package( | ||
INSTALL_TO_SHARE | ||
config | ||
launch | ||
rviz | ||
) |
File renamed without changes.
4 changes: 4 additions & 0 deletions
4
autoware_launch/config/control/external_cmd_selector/external_cmd_selector.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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
/**: | ||
ros__parameters: | ||
update_rate: 10.0 | ||
initial_selector_mode: "local" # ["local", "remote"] |
15 changes: 15 additions & 0 deletions
15
autoware_launch/config/control/lane_departure_checker/lane_departure_checker.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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/**: | ||
ros__parameters: | ||
# Node | ||
update_rate: 10.0 | ||
visualize_lanelet: false | ||
|
||
# Core | ||
footprint_margin_scale: 1.0 | ||
resample_interval: 0.3 | ||
max_deceleration: 2.8 | ||
delay_time: 1.3 | ||
max_lateral_deviation: 2.0 | ||
max_longitudinal_deviation: 2.0 | ||
max_yaw_deviation_deg: 60.0 | ||
delta_yaw_threshold_for_closest_point: 1.570 #M_PI/2.0, delta yaw thres for closest point |
11 changes: 11 additions & 0 deletions
11
...re_launch/config/control/obstacle_collision_checker/obstacle_collision_checker.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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
/**: | ||
ros__parameters: | ||
# Node | ||
update_rate: 10.0 | ||
|
||
# Core | ||
delay_time: 0.03 # delay time of vehicle [s] | ||
footprint_margin: 0.0 # margin for footprint [m] | ||
max_deceleration: 1.5 # max deceleration [m/ss] | ||
resample_interval: 0.3 # interval distance to resample point cloud [m] | ||
search_radius: 5.0 # search distance from trajectory to point cloud [m] |
File renamed without changes.
File renamed without changes.
File renamed without changes.
16 changes: 16 additions & 0 deletions
16
autoware_launch/config/control/trajectory_follower/lateral/pure_pursuit.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 |
---|---|---|
@@ -0,0 +1,16 @@ | ||
/**: | ||
ros__parameters: | ||
ld_velocity_ratio: 2.4 | ||
ld_lateral_error_ratio: 3.6 | ||
ld_curvature_ratio: 120.0 | ||
long_ld_lateral_error_threshold: 0.5 | ||
min_lookahead_distance: 4.35 | ||
max_lookahead_distance: 15.0 | ||
converged_steer_rad: 0.1 | ||
reverse_min_lookahead_distance: 7.0 | ||
prediction_ds: 0.3 | ||
prediction_distance_length: 21.0 | ||
resampling_ds: 0.1 | ||
curvature_calculation_distance: 4.0 | ||
enable_path_smoothing: false | ||
path_filter_moving_ave_num: 25 |
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
File renamed without changes.
28 changes: 28 additions & 0 deletions
28
...config/planning/scenario_planning/common/planning_validator/planning_validator.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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
/**: | ||
ros__parameters: | ||
# Operation option when invalid trajectory is detected | ||
# 0: publish the trajectory even if it is invalid | ||
# 1: stop publishing the trajectory | ||
# 2: publish the last validated trajectory | ||
invalid_trajectory_handling_type: 0 | ||
|
||
publish_diag: true # if true, diagnostic msg is published | ||
|
||
# If the number of consecutive invalid trajectory exceeds this threshold, the Diag will be set to ERROR. | ||
# (For example, threshold = 1 means, even if the trajectory is invalid, Diag will not be ERROR if | ||
# the next trajectory is valid.) | ||
diag_error_count_threshold: 0 | ||
|
||
display_on_terminal: true # show error msg on terminal | ||
|
||
thresholds: | ||
interval: 100.0 | ||
relative_angle: 2.0 # (= 115 degree) | ||
curvature: 1.0 | ||
lateral_acc: 9.8 | ||
longitudinal_max_acc: 9.8 | ||
longitudinal_min_acc: -9.8 | ||
steering: 1.414 | ||
steering_rate: 10.0 | ||
velocity_deviation: 100.0 | ||
distance_deviation: 100.0 |
File renamed without changes.
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.