GPS Glitch: radius and accel max to 5m and 5m/s/s

This commit is contained in:
Randy Mackay 2013-11-13 11:49:21 +09:00
parent 6448ff455f
commit 3bd124eb72
1 changed files with 2 additions and 2 deletions

View File

@ -13,8 +13,8 @@
#include <AP_Math.h>
#include <AP_GPS.h>
#define GPS_GLITCH_ACCEL_MAX_CMSS 1000.0f // vehicle can accelerate at up to 10m/s/s in any direction
#define GPS_GLITCH_RADIUS_CM 1000.0f // gps movement within 10m of current position are always ok
#define GPS_GLITCH_ACCEL_MAX_CMSS 500.0f // vehicle can accelerate at up to 5m/s/s in any direction
#define GPS_GLITCH_RADIUS_CM 500.0f // gps movement within 5m of current position are always ok
/// @class GPS_Glitch
/// @brief GPS Glitch protection class