mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-19 14:25:20 +03:00
Set yaw D default to 0 since it is unused anyway.
This commit is contained in:
parent
6b6ad463df
commit
00228427da
2 changed files with 2 additions and 2 deletions
|
@ -86,7 +86,7 @@ void setDefaultTestSettings(void) {
|
|||
pidProfile = pidProfilesMutable(1);
|
||||
pidProfile->pid[PID_ROLL] = { 40, 40, 30 };
|
||||
pidProfile->pid[PID_PITCH] = { 58, 50, 35 };
|
||||
pidProfile->pid[PID_YAW] = { 70, 45, 20 };
|
||||
pidProfile->pid[PID_YAW] = { 70, 45, 0 };
|
||||
pidProfile->pid[PID_LEVEL] = { 50, 50, 75 };
|
||||
|
||||
pidProfile->pidSumLimit = PIDSUM_LIMIT;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue