Skip to content

Commit 3f0cfb2

Browse files
committed
prepare for 0.20.0 release
1 parent d28219b commit 3f0cfb2

File tree

4 files changed

+19
-2
lines changed

4 files changed

+19
-2
lines changed

changelog.md

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

3+
## 0.20.0 - 2020.04.21
4+
5+
- Fixed Wire write ambigou
6+
- Improved debugging with log and sysview, thanks to @henrygab
7+
- Fixed recipe to compute SRAM and ROM of sketch
8+
- Removed the force waiting Serial when debug is enabled
9+
- Updated nrfx to v2.1.0
10+
- Updated TinyUSB to commit 718db7e
11+
312
## 0.19.0 - 2020.03.12
413

514
- Add BLECharacteristic::isFixedLen()

cores/nRF5/TinyUSB/Adafruit_TinyUSB_nRF.cpp

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,15 @@
3535
//--------------------------------------------------------------------+
3636
extern "C" void USBD_IRQHandler(void)
3737
{
38+
#if CFG_SYSVIEW
39+
SEGGER_SYSVIEW_RecordEnterISR();
40+
#endif
41+
3842
tud_int_handler(0);
43+
44+
#if CFG_SYSVIEW
45+
SEGGER_SYSVIEW_RecordExitISR();
46+
#endif
3947
}
4048

4149
//--------------------------------------------------------------------+

libraries/Bluefruit52Lib/library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name=Adafruit Bluefruit nRF52 Libraries
2-
version=0.19.0
2+
version=0.20.0
33
author=Adafruit
44
maintainer=Adafruit <info@adafruit.com>
55
sentence=Arduino library for nRF52-based Adafruit Bluefruit LE modules

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=0.19.0
20+
version=0.20.0
2121

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

0 commit comments

Comments
 (0)