Have systems loiter at the last waypoint

This commit is contained in:
Lorenz Meier 2013-09-06 16:59:37 +02:00
commit 127832b8fd
1 changed files with 2 additions and 2 deletions

View File

@ -428,8 +428,8 @@ void check_waypoints_reached(uint64_t now, const struct vehicle_global_position_
/* the last waypoint was reached, if auto continue is
* activated keep the system loitering there.
*/
cur_wp->MAV_CMD_NAV_LOITER_UNLIM;
cur_wp->param3 = 15.0f // XXX magic number 15 m loiter radius
cur_wp->command = MAV_CMD_NAV_LOITER_UNLIM;
cur_wp->param3 = 15.0f; // XXX magic number 15 m loiter radius
} else {
if ((uint16_t)(wpm->current_active_wp_id + 1) < wpm->size)