From 561f6b262562ae2f51689f63b723c3724aaf43ca Mon Sep 17 00:00:00 2001 From: hathach Date: Tue, 8 May 2018 22:25:15 +0700 Subject: [PATCH] add some build description. --- README.md | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/README.md b/README.md index ba5b060..25f4ee0 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,25 @@ # Adafruit nRF52840 Bootloader This repository contains the USB bootloader for Adafruit nRF52840 boards (1MB flash, 256KB SRAM). +This repository depend on the [tinyusb](https://github.com/hathach/tinyusb/tree/develop) as submodule, after cloing this repo you need to run this command + + git submodule update --init + +## Build with makefile + +Navigate to `src/singlebank` (recommended) or `src/dualbank` (work in progress), and use feather52840 target for building bootloader. + + make feather52840 + +To flash bootloader + S140 + + make flash_feather52840 + +To only flash S140 + + make flash_sd + +## Build using Segger Embeded Studio + +For better debugging you can also use SES, The project file is located at `src/segger/nrf52840_bootloader.emProject`. Note: the SES only flash the bootloader when you click download, you need to flash Softdevice beforehand if you haven't done so ( use `make flash_sd` mentioned above ) +