Update Building in Windows.md

This commit is contained in:
pulsar256 2014-12-14 19:21:15 +01:00
parent 69b04332cd
commit eef68e8378
1 changed files with 12 additions and 0 deletions

View File

@ -85,3 +85,15 @@ arm-none-eabi-objcopy -O ihex --set-start 0x8000000 obj/main/cleanflight_NAZE.el
```
You can use the Cleanflight-Configurator to flash the ```obj/cleanflight_NAZE.hex``` file.
## Updating and rebuilding
Navigate to the local cleanflight repository and use the following steps to pull the latest changes and rebuild your version of cleanflight:
```bash
cd /cygdrive/c/dev/cleanflight
git reset --hard
git pull
make clean TARGET=NAZE
make
```