Skip to content

Commit

Permalink
change distance to stop at
Browse files Browse the repository at this point in the history
  • Loading branch information
misko committed Mar 14, 2024
1 parent aa132cc commit cb220e8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion spf/mavlink/mavlink_controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ def move_to_point(self, point, log_interval=5):
collision_soon = (
(not self.disable_distance_finder)
and self.distance_finder is not None
and distance < 130
and distance < 100
)
if self.mav_mode == "ROVER_MODE_GUIDED":
if self.armed and collision_soon:
Expand Down

0 comments on commit cb220e8

Please sign in to comment.