Merge pull request #68 from adafruit/develop

update changelog for 0.2.11 releasing
This commit is contained in:
Limor "Ladyada" Fried 2019-05-03 13:20:21 -04:00 committed by GitHub
commit bc418d6630
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 14 additions and 5 deletions

View File

@ -1,4 +1,6 @@
# Adafruit Bluefruit nRF52 Bootloader
# Adafruit nRF52 Bootloader
[![Build Status](https://travis-ci.com/adafruit/Adafruit_nRF52_Bootloader.svg?branch=master)](https://travis-ci.com/adafruit/Adafruit_nRF52_Bootloader)
This is a CDC/DFU/UF2 bootloader for nRF52 boards.

View File

@ -1,10 +1,14 @@
# Adafruit nRF52 Bootloader Changelog
## 0.2.10
## 0.2.11
- Fixed various FAT issues, thanks to @henrygab
- Added MakerDiary MDK nrf52840 USB dongle support, thanks to @gpshead
- Fixed incorrect button mapping for Feather nRF52840
- NFC pins are forced to GPIO mode by bootloader
- Added Metro nRF52840 Express VID/PID
- Enhance board management
- Added electronut/papyr_support
## 0.2.9

View File

@ -7,10 +7,8 @@ import time
subprocess.run("rm -rf _build*", shell=True)
subprocess.run("rm -rf bin/*", shell=True)
PARALLEL = "-j 5"
travis = False
if "TRAVIS" in os.environ and os.environ["TRAVIS"] == "true":
PARALLEL="-j 2"
travis = True
exit_status = 0
@ -21,12 +19,14 @@ for entry in os.scandir("src/boards"):
#sha, version = build_info.get_version_info()
total_time = time.monotonic()
for board in all_boards:
bin_directory = "bin/{}/".format(board)
os.makedirs(bin_directory, exist_ok=True)
start_time = time.monotonic()
make_result = subprocess.run("make BOARD={} combinehex genpkg".format(board), shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
make_result = subprocess.run("make -j 4 BOARD={} combinehex genpkg".format(board), shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT)
build_duration = time.monotonic() - start_time
success = "\033[32msucceeded\033[0m"
if make_result.returncode != 0:
@ -48,4 +48,7 @@ for board in all_boards:
print()
total_time = time.monotonic() - total_time
print("Total build time took {:.2f}s".format(total_time))
sys.exit(exit_status)