Home

Awesome

Bitcraze Crazyradio dongle CI

Source code and tools for the Bitcraze Crazyradio USB dongle.

See Bitcraze Documentation for more information about Crazyradio and the USB protocol used.

Folders content:

Building the firmware

Requirement:

On Ubuntu this can be installed with:

sudo apt-get install sdcc binutils

On Mac (using homebrew):

brew install sdcc
brew install binutils
ln -s /usr/local/opt/binutils/bin/gobjcopy /usr/local/bin/objcopy

To build the firmware you should navigate to the firmware directory.

Build for Crazyradio

make CRPA=0

Build for Crazyradio PA

make CRPA=1

Flashing the Firmware

To flash the firmware run the following from the firmware directory:

python ../usbtools/launchBootloader.py
sudo python ../usbtools/nrfbootload.py flash bin/cradio.bin

After flashing successfully, you need to replug the Crazyradio. More details are in the wiki.

Check your firmware version

Run the following command:

lsusb -d 1915:7777 -v | grep bcdDevice

Contribute

Go to the contribute page on our website to learn more.

Test code for contribution

Run the automated build locally to test your code

./tools/build/build