Fork from inav at github. Modified for some special functions needs.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Dominic Clifton 910d63a722 Latest binaries, includes HoTT updates and some serial port changes. 11 years ago
docs HoTT update. 11 years ago
lib Adding the first unit test to verify battery voltage calculations based 11 years ago
obj Latest binaries, includes HoTT updates and some serial port changes. 11 years ago
src HoTT update. 11 years ago
support Enable automatic reset after (re)flashing, closes issue #19 11 years ago
targets/ChebuzzF3 CHEBUZZF3 - Implement ADC driver for 3 ADC channels. Use STM32F3 linker 11 years ago
test fix include file order on flight imu unit test 11 years ago
.gitignore Updating git ignore list to ignore some common files. 11 years ago
JLinkSettings.ini imported STM32 multiwii port into baseflight dir 13 years ago
Makefile Update Makefile 11 years ago
README.md Updating readme to point at documentation sources. 11 years ago
baseflight.uvproj adding rxmsp to uvision project 11 years ago
startup_stm32f30x_md_gcc.s First commit of port to STM32F3DISCOVERY board. 11 years ago
stm32_flash_f103.ld Merge remote-tracking branch 'multiwii/master' 11 years ago
stm32_flash_f303.ld BUGFIX - Linker script for F10x was not reserving the last 2kb which 11 years ago

README.md

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:

  1. greater reliability through code robustness.
  2. easier maintainance through code cleanliness.
  3. easier to develop new features.
  4. 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.

Documentation

There is some documentation here: https://github.com/hydra/cleanflight/tree/master/docs If what you need is not covered then refer to the baseflight documentation. If you still can't find what you need then stop by #multiwii on the Freenode IRC network - irc://irc.freenode.net/#multiwii

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: