Skip to content

Commit

Permalink
Merge pull request #694 from adafruit/release-1.1.0
Browse files Browse the repository at this point in the history
update changelog and bump up version for release 1.1.0
  • Loading branch information
hathach committed Sep 24, 2021
2 parents 99c3a60 + abcd158 commit 7770246
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/githubci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
- 'feather52840'
- 'feather52840sense'
- 'itsybitsy52840'
- 'ledglasses_nrf52840'

runs-on: ubuntu-latest

Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,9 @@ This repository contains the Arduino BSP for Adafruit Bluefruit nRF52 series:
- [Adafruit Feather nRF52840 Express](https://www.adafruit.com/product/4062)
- [Adafruit Feather nRF52840 Sense](https://www.adafruit.com/product/4516)
- [Adafruit ItsyBitsy nRF52840 Express](https://www.adafruit.com/product/4481)
- [Adafruit LED Glasses Driver nRF52840](https://www.adafruit.com/product/5217)
- Adafruit Metro nRF52840 Express
- [Raytac MDBT50Q-RX](https://www.adafruit.com/product/5199)
- [Raytac MDBT50Q-RX Dongle](https://www.adafruit.com/product/5199)

Following boards are also included but are not officially supported:

Expand Down
8 changes: 8 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Adafruit nRF52 Arduino Core Changelog

## 1.1.0 - 2021.09.24

- Add **Adafruit LED Glasses Driver nRF52840** board support
- Update UUID list
- Add BLE Gamepad support with `BLEHidGamepad` class and example **Peripheral/blehid_gamepad/blehid_gamepad.ino**
- Implemnent thread-safe malloc/free using --wrap linker option
- Update bootloader binaries to 0.6.2

## 1.0.0 - 2021.08.18

Core is stable enough to be released as 1.0.0. Following is chagnes since last release
Expand Down
3 changes: 3 additions & 0 deletions cores/nRF5/wiring.c
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ uint32_t bootloaderVersion = 0;

void init( void )
{
// clear reset reason: can save it for application usage if needed.
NRF_POWER->RESETREAS |= NRF_POWER->RESETREAS;

// Retrieve bootloader version
bootloaderVersion = BOOTLOADER_VERSION_REGISTER;

Expand Down
2 changes: 1 addition & 1 deletion platform.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA

name=Adafruit nRF52 Boards
version=1.0.0
version=1.1.0

# Compile variables
# -----------------
Expand Down

0 comments on commit 7770246

Please sign in to comment.