Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yabuta committed Aug 7, 2024
1 parent 31aa557 commit 032ada5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/signage/src/signage/route_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,8 @@ def route_checker_callback(self):
# Check whether the vehicle is move in autonomous
self._is_driving = True
self._is_stopping = False
self._announced_arrive = False
self._announced_depart = False

if (
not self._trigger_external_signage
and self._autoware.information.autoware_control
Expand All @@ -300,7 +301,7 @@ def route_checker_callback(self):
self._is_stopping = True
self._skip_announce = False
self._announce_engage = False
self._announced_depart = False
self._announced_arrive = False

if (
self._autoware.information.operation_mode != OperationModeState.AUTONOMOUS
Expand Down

0 comments on commit 032ada5

Please sign in to comment.