Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: sync upstream #617

Merged
merged 23 commits into from
Jun 26, 2023
Merged
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
68cb41f
fix(points_preprocessor): single input topic should be first element …
Timple Jun 23, 2023
f68374b
feat(avoidance): improve avoidance judgement logic for pedestrian & b…
satoshi-ota Jun 23, 2023
cdab0e6
refactor(occpuancy grid map): move param to yaml (#4038)
soblin Jun 23, 2023
75eecc7
feat(behavior_path_planner): use new framework (#4051)
satoshi-ota Jun 23, 2023
99ec28b
feat(dynamic_avoidance): apply LPF to shift length, and positive rela…
takayuki5168 Jun 23, 2023
deffac2
refactor(crosswalk): minor refactoring (#4046)
takayuki5168 Jun 23, 2023
385ef5b
feat(behavior_velocity_traffic_light_module): print not found traffic…
takayuki5168 Jun 23, 2023
7c77bbd
fix(behavior_path_planner): print avoidance and lane change debug mes…
zulfaqar-azmi-t4 Jun 23, 2023
a0a0b1a
feat(dynamic_avoidance): suppress flickering of dynamic avoidance lau…
takayuki5168 Jun 23, 2023
7029473
fix(avoidance): update logic to keep waiting approval (#4059)
satoshi-ota Jun 23, 2023
25f9d6a
fix(lane_change): fix debug visualization now showing (#4061)
zulfaqar-azmi-t4 Jun 23, 2023
e70df12
feat(dynamic_avoidance): ignore cut-out vehicle (#4049)
takayuki5168 Jun 23, 2023
4ee6975
feat(mission_planner): add mrm route planner (#4027)
purewater0901 Jun 23, 2023
4bc5ccc
revert: "feat(behavior_path_planner): relax longitudinal_velocity_del…
shmpwk Jun 23, 2023
87f9b86
fix(start_planner): not run other modules when back pull out (#4043)
kosuke55 Jun 23, 2023
79024d3
docs(default_ad_api): fix link in default_ad_api (#4067)
Shin-kyoto Jun 23, 2023
1b9232f
feat(behavior_path_planner): add turn signal debug marker (#4066)
purewater0901 Jun 23, 2023
6c6973b
build: fix opencv dependency (#3987)
esteve Jun 23, 2023
edcad42
perf(voxel_grid_downsample_filter): performance tuning (#3679)
atsushi421 Jun 23, 2023
7b6bff2
feat(obstacle_cruise_planner): change cruise color to orange (#4065)
shmpwk Jun 24, 2023
40f9311
refactor(lane_change): use common logger (#4072)
TakaHoribe Jun 25, 2023
e9d4e9f
fix(crosswalk): return if the stop point with factor is boost::none (…
satoshi-ota Jun 26, 2023
a3c6ea2
feat(avoidance): set additional buffer margin independently (#4041)
satoshi-ota Jun 26, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix(avoidance): update logic to keep waiting approval (autowarefounda…
…tion#4059)

* revert "fix(avoidance): don't clear waiting approval if raw shift line exists (autowarefoundation#4012)"

This reverts commit 8577563.

* fix(avoidance): update logic to keep waiting approval

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>

---------

Signed-off-by: satoshi-ota <satoshi.ota928@gmail.com>
  • Loading branch information
satoshi-ota authored Jun 23, 2023
commit 702947346bb48f89a93aab1a88cc7d60a2a9ea4d
Original file line number Diff line number Diff line change
Expand Up @@ -2695,9 +2695,11 @@ BehaviorModuleOutput AvoidanceModule::planWaitingApproval()
[](const auto & o) { return !o.is_avoidable; });

const auto candidate = planCandidate();
if (!avoidance_data_.unapproved_raw_sl.empty()) {
if (!data.safe_new_sl.empty()) {
updateCandidateRTCStatus(candidate);
waitApproval();
} else if (path_shifter_.getShiftLines().empty()) {
waitApproval();
} else if (all_unavoidable) {
waitApproval();
} else {
Expand Down