8000 Merge pull request #694 from adafruit/release-1.1.0 · adafruit/Adafruit_nRF52_Arduino@7770246 · GitHub
[go: up one dir, main page]

Skip to content

Commit 7770246

Browse files
authored
Merge pull request #694 from adafruit/release-1.1.0
update changelog and bump up version for release 1.1.0
2 parents 99c3a60 + abcd158 commit 7770246

File tree

5 files changed

+15
-2
lines changed

5 files changed

+15
-2
lines changed

.github/workflows/githubci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ jobs:
1515
- 'feather52840'
1616
- 'feather52840sense'
1717
- 'itsybitsy52840'
18+
- 'ledglasses_nrf52840'
1819

1920
runs-on: ubuntu-latest
2021

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@ This repository contains the Arduino BSP for Adafruit Bluefruit nRF52 series:
1010
- [Adafruit Feather nRF52840 Express](https://www.adafruit.com/product/4062)
1111
- [Adafruit Feather nRF52840 Sense](https://www.adafruit.com/product/4516)
1212
- [Adafruit ItsyBitsy nRF52840 Express](https://www.adafruit.com/product/4481)
13+
- [Adafruit LED Glasses Driver nRF52840](https://www.adafruit.com/product/5217)
1314
- Adafruit Metro nRF52840 Express
14-
- [Raytac MDBT50Q-RX](https://www.adafruit.com/product/5199)
15+
- [Raytac MDBT50Q-RX Dongle](https://www.adafruit.com/product/5199)
1516

1617
Following boards are also included but are not officially supported:
1718

changelog.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# Adafruit nRF52 Arduino Core Changelog
22

3+
## 1.1.0 - 2021.09.24
4+
5+
- Add **Adafruit LED Glasses Driver nRF52840** board support
6+
- Update UUID list
7+
- Add BLE Gamepad support with `BLEHidGamepad` class and example **Peripheral/blehid_gamepad/blehid_gamepad.ino**
8+
- Implemnent thread-safe malloc/free using --wrap linker option
9+
- Update bootloader binaries to 0.6.2
10+
311
## 1.0.0 - 2021.08.18
412

513
Core is stable enough to be released as 1.0.0. Following is chagnes since last release

cores/nRF5/wiring.c

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,9 @@ uint32_t bootloaderVersion = 0;
3333

3434
void init( void )
3535
{
36+
// clear reset reason: can save it for application usage if needed.
37+
NRF_POWER->RESETREAS |= NRF_POWER->RESETREAS;
38+
3639
// Retrieve bootloader version
3740
bootloaderVersion = BOOTLOADER_VERSION_REGISTER;
3841

platform.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
1818

1919
name=Adafruit nRF52 Boards
20-
version=1.0.0
20+
version=1.1.0
2121

2222
# Compile variables
2323
# -----------------

0 commit comments

Comments
 (0)
0