Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit e255ad9

Browse files
committedFeb 6, 2024
fix rtc interface
Signed-off-by: kyoichi-sugahara <kyoichi.sugahara@tier4.jp>
1 parent df46f8a commit e255ad9

File tree

1 file changed

+3
-3
lines changed
  • planning/behavior_path_start_planner_module

1 file changed

+3
-3
lines changed
 

‎planning/behavior_path_start_planner_module/README.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ Here's the expression of the steps start pose searching steps, considering the t
183183

184184
- **Collision check performed range**: Safety checks for collisions with dynamic objects are conducted within the defined boundaries between the start and end points of each maneuver, ensuring there is no overlap with the road lane's centerline. This is to avoid hindering the progress of following vehicles.
185185

186-
- **Collision response policy**: Should a collision with dynamic objects be detected along the generated path, departure is not permitted if detection occurs before movement. If the vehicle has already commenced movement, an attempt to stop will be made, provided it's feasible within the braking constraints and without crossing the travel lane's centerline.
186+
- **Collision response policy**: Should a collision with dynamic objects be detected along the generated path, deactivate module decision is registered if collision detection occurs before departure. If the vehicle has already commenced movement, an attempt to stop will be made, provided it's feasible within the braking constraints and without crossing the travel lane's centerline.
187187

188188
```plantuml
189189
@startuml
@@ -192,7 +192,7 @@ start
192192
193193
if (Collision with dynamic objects detected?) then (yes)
194194
if (Before departure?) then (yes)
195-
:Departure not permitted;
195+
:Deactivate module decision is registered;
196196
else (no)
197197
if (Can stop within constraints \n && \n no crossing centerline?) then (yes)
198198
:Stop;
@@ -225,7 +225,7 @@ The system operates distinctly under manual and auto mode, especially concerning
225225

226226
#### Forward driving
227227

228-
- **Start approval required**: Even if a route is generated, approval is required to initiate movement. If a dynamic object poses a risk, such as an approaching vehicle from behind, candidate routes may be displayed, but approval is not granted.
228+
- **Start approval required**: Even if a route is generated, approval is required to initiate movement. If a dynamic object poses a risk, such as an approaching vehicle from behind, candidate routes may be displayed, but approval is necessary for departure.
229229

230230
#### Backward driving + forward driving
231231

0 commit comments

Comments
 (0)
Please sign in to comment.