Skip to content

Commit

Permalink
#379 Minor updates of documentation for CF 2.X
Browse files Browse the repository at this point in the history
  • Loading branch information
krichardsson committed Feb 14, 2019
1 parent 1762dea commit 35df4d7
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 7 deletions.
28 changes: 22 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Crazyflie 2.0 Firmware [![Build Status](https://api.travis-ci.org/bitcraze/crazyflie-firmware.svg)](https://travis-ci.org/bitcraze/crazyflie-firmware)
# Crazyflie Firmware [![Build Status](https://api.travis-ci.org/bitcraze/crazyflie-firmware.svg)](https://travis-ci.org/bitcraze/crazyflie-firmware)

This project contains the source code for the Crazyflie 2.0 firmware.
This project contains the source code for the firmware used in the Crazyflie range of platforms, including
the Crazyflie 2.X and the Roadrunner.

### Crazyflie 1.0 support

Expand Down Expand Up @@ -87,19 +88,34 @@ git submodule update

## Compiling

### Crazyflie 2.0
### Crazyflie 2.X

This is the default build so just running "make" is enough or:
This is the default build so just running ```make``` is enough or:
```bash
make PLATFORM=CF2
make PLATFORM=cf2
```

or with the toolbelt

```bash
tb make
tb make PLATFORM=cf2
```

### Roadrunner

Use the ```tag``` platform

```bash
make PLATFORM=tag
```

or with the toolbelt

```bash
tb make PLATFORM=tag
```


### config.mk
To create custom build options create a file called config.mk in the tools/make/
folder and fill it with options. E.g.
Expand Down
2 changes: 1 addition & 1 deletion src/deck/drivers/src/buzzdeck.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*
* buzzdeck.c - Deck driver for the Crazyflie 2.0 buzzer deck
* buzzdeck.c - Deck driver for the buzzer deck
*/

#include <stdint.h>
Expand Down

0 comments on commit 35df4d7

Please sign in to comment.