Skip to content
Snippets Groups Projects
Commit 3b2d203f authored by rmackay9's avatar rmackay9
Browse files

AP_AHRS: updated default AHRS_YAW_P to 0.2 (was 0.4)

This reduces the compass's default authority over the yaw direction by half
parent 247e7ff3
No related branches found
No related tags found
No related merge requests found
......@@ -17,7 +17,7 @@ public:
AP_AHRS_DCM(IMU *imu, GPS *&gps) : AP_AHRS(imu, gps)
{
_kp_roll_pitch = 0.13;
_kp_yaw.set(0.4);
_kp_yaw.set(0.2);
_dcm_matrix(Vector3f(1, 0, 0),
Vector3f(0, 1, 0),
Vector3f(0, 0, 1));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment