Fixed navigation bug

This commit is contained in:
Jason Short 2011-11-28 14:22:05 -08:00
parent ce5ad442fc
commit b4a0d8a275
1 changed files with 1 additions and 3 deletions

View File

@ -30,9 +30,7 @@ static bool check_missed_wp()
{
int32_t temp = target_bearing - original_target_bearing;
temp = wrap_180(temp);
//return (abs(temp) > 10000); //we pased the waypoint by 10 °
// temp testing
return false;
return (abs(temp) > 10000); //we pased the waypoint by 10 °
}
// ------------------------------