mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-15 04:15:44 +03:00
Open Source Flight Controller Firmware
calibration. When the model is moved during the gyro calibration period too much the code that detects the movement (gyroMovementCalibrationThreshold aka 'moron threshold') did not restart the calibration correctly and one too few calibration cycles were used when restarting. In addition to this there was unnecessary calibration reset code - the reset of calibration variables is supposed to happen at the start of calibration; due to the bug the first calibration cycle could not be detected when restarting so the old reset code was required. This commit also cleans up the Gyro code so the it is in a similar style to the recently cleaned acceleration code. |
||
---|---|---|
lib | ||
obj | ||
src | ||
support | ||
.gitignore | ||
baseflight.uvproj | ||
JLinkSettings.ini | ||
Makefile | ||
README.md | ||
stm32_flash.ld |
Cleanflight
Clean-code version of baseflight flight-controller - flight controllers are used to fly multi-rotor craft and fixed wing craft.
This fork differs from baseflight in that it attempts to use modern software development practices which result in:
- greater reliability through code robustness.
- easier maintainance through code cleanliness.
- easier to develop new features.
- easier to re-use code though code de-coupling and modularisation.
The MultiWii software, from which baseflight originated, violates many good software development best-practices. Hopefully this fork will go some way to address them. If you see any bad code in this fork please immediately raise an issue so it can be fixed, or better yet submit a pull request.
Contributing
Before making any contributions, take a note of the https://github.com/multiwii/baseflight/wiki/CodingStyle
For this fork it is also advised to read about clean code, here are some useful links: