Skip to content

Commit

Permalink
Fixed missspell and changed the behavior to only disable gnss during …
Browse files Browse the repository at this point in the history
…fine adjustment by the puncher class.
  • Loading branch information
SeaTechRC committed Sep 6, 2024
1 parent 975f29a commit 623719b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions field_friend/automations/navigation/navigation.py
Original file line number Diff line number Diff line change
Expand Up @@ -55,8 +55,8 @@ async def start(self) -> None:
await self._drive(self.DEFAULT_DRIVE_DISTANCE)
continue
else:
with self.gnss.paused(): # Pause GNSS for better local accuracy
await self._drive(distance)
await self._drive(distance)
with self.gnss.pause(): # Pause GNSS for better local accuracy
await self.implement.start_workflow()
await self.implement.stop_workflow()
except WorkflowException as e:
Expand Down

0 comments on commit 623719b

Please sign in to comment.