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

Update autotune so it now actually changes the pid values.

This commit also fixes a few missing const keywords after the map file
was inspected.
This commit is contained in:
Dominic Clifton 2014-05-27 21:20:29 +01:00
parent 2cf686b36b
commit bc84f6d5d4
8 changed files with 105 additions and 59 deletions

View file

@ -56,7 +56,7 @@ void resetErrorGyro(void)
errorGyroIf[YAW] = 0;
}
angle_index_t rcAliasToAngleIndexMap[] = { AI_ROLL, AI_PITCH };
const angle_index_t rcAliasToAngleIndexMap[] = { AI_ROLL, AI_PITCH };
bool shouldAutotune(void)
{