1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-14 11:59:58 +03:00

Add FF to yaw, reduce yaw P and I (#8515)

Add FF to yaw, reduce yaw P and I
This commit is contained in:
Michael Keller 2019-07-02 23:47:23 +12:00 committed by GitHub
commit f36eda16c5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -136,7 +136,7 @@ void resetPidProfile(pidProfile_t *pidProfile)
.pid = { .pid = {
[PID_ROLL] = { 42, 60, 35, 70 }, [PID_ROLL] = { 42, 60, 35, 70 },
[PID_PITCH] = { 46, 70, 38, 75 }, [PID_PITCH] = { 46, 70, 38, 75 },
[PID_YAW] = { 35, 100, 0, 0 }, [PID_YAW] = { 30, 80, 0, 70 },
[PID_LEVEL] = { 50, 50, 75, 0 }, [PID_LEVEL] = { 50, 50, 75, 0 },
[PID_MAG] = { 40, 0, 0, 0 }, [PID_MAG] = { 40, 0, 0, 0 },
}, },