1
0
Fork 0
mirror of https://github.com/betaflight/betaflight.git synced 2025-07-16 04:45:24 +03:00
Open Source Flight Controller Firmware
Find a file
Dominic Clifton 09a1739ce6 Separate UBLOX GPS SBAS configuration from GPS init.
Extracted NMEA and UBLOX code from the GPS hardware init method into
separate methods.  Introduced a state for changing baud rate rather than
re-using state_position.
2014-06-03 13:09:45 +01:00
docs Updating known issues. 2014-06-01 19:29:38 +01:00
lib Update makefile to use target specific files. 2014-06-02 18:13:28 +01:00
src Separate UBLOX GPS SBAS configuration from GPS init. 2014-06-03 13:09:45 +01:00
support Enable automatic reset after (re)flashing, closes issue #19 2013-11-01 22:47:25 +00:00
targets Updating Olimexino board documentation to cover new HoTT telemetry port. 2014-05-23 13:08:18 +01:00
.gitignore Updating git ignore list to ignore some common files. 2014-04-08 01:20:44 +01:00
baseflight.uvproj Remove FY90Q support. 2014-05-30 09:45:15 +01:00
JLinkSettings.ini imported STM32 multiwii port into baseflight dir 2012-02-16 09:39:58 +00:00
Makefile Extract led and buzzer hardware initialisation from system.c. 2014-06-02 19:57:49 +01:00
README.md Updating readme to point at documentation sources. 2014-05-12 13:32:13 +01:00
startup_stm32f30x_md_gcc.s First commit of port to STM32F3DISCOVERY board. 2014-04-25 01:09:19 +01:00
stm32_flash_f103.ld Merge remote-tracking branch 'multiwii/master' 2014-05-16 00:45:21 +01:00
stm32_flash_f303.ld BUGFIX - Linker script for F10x was not reserving the last 2kb which 2014-05-12 01:36:59 +01:00

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: