1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-25 09:16:07 +03:00

New Luxfloat yaw default

This commit is contained in:
borisbstyle 2016-03-23 00:45:48 +01:00
parent 38c837f993
commit 391dad4a7b
2 changed files with 1 additions and 1 deletions

View file

@ -187,7 +187,7 @@ static void resetPidProfile(pidProfile_t *pidProfile)
pidProfile->P_f[PITCH] = 1.4f;
pidProfile->I_f[PITCH] = 0.4f;
pidProfile->D_f[PITCH] = 0.01f;
pidProfile->P_f[YAW] = 4.0f;
pidProfile->P_f[YAW] = 2.5f;
pidProfile->I_f[YAW] = 0.4f;
pidProfile->D_f[YAW] = 0.00f;
pidProfile->A_level = 4.0f;