Skip to content

Commit

Permalink
balloon_strategy: set alt and distance limits while in guided mode
Browse files Browse the repository at this point in the history
  • Loading branch information
rmackay9 committed Jun 5, 2014
1 parent e748c71 commit 8a7b501
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/balloon_strategy.py
Original file line number Diff line number Diff line change
Expand Up @@ -195,9 +195,9 @@ def check_status(self):
if not self.controlling_vehicle:
self.controlling_vehicle = True
# clear out any limits on balloon position
self.mission_alt_min = 0
self.mission_alt_min = 1
self.mission_alt_max = 0
self.mission_distance_max = 0
self.mission_distance_max = 50
# start search for balloon
self.start_search()
return
Expand Down

0 comments on commit 8a7b501

Please sign in to comment.