Removed 2 more degree symbols from comments

This commit is contained in:
Craig@3DR 2012-12-18 13:42:42 -08:00 committed by Andrew Tridgell
parent b786cf40f7
commit e350bfbba8
1 changed files with 2 additions and 2 deletions

View File

@ -362,8 +362,8 @@ static void update_nav_wp()
nav_lon = g.pid_loiter_rate_lon.get_integrator();
nav_lat = g.pid_loiter_rate_lon.get_integrator();
nav_lon = constrain(nav_lon, -2000, 2000); // 20m
nav_lat = constrain(nav_lat, -2000, 2000); // 20m
nav_lon = constrain(nav_lon, -2000, 2000); // 20 degrees
nav_lat = constrain(nav_lat, -2000, 2000); // 20 degrees
break;
}
}