Skip to content

Commit 2a1e2a0

Browse files
authored
Merge pull request #487 from adafruit/release-0.20.0
prepare for 0.20.0 release
2 parents d28219b + 9f63c9c commit 2a1e2a0

File tree

6 files changed

+22
-5
lines changed

6 files changed

+22
-5
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
//--------------------------------------------------------------------+

cores/nRF5/TinyUSB/tusb_config.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,8 +68,8 @@
6868
#define CFG_TUD_HID_BUFSIZE 64
6969

7070
// MIDI FIFO size of TX and RX
71-
#define CFG_TUD_MIDI_RX_BUFSIZE 64
72-
#define CFG_TUD_MIDI_TX_BUFSIZE 64
71+
#define CFG_TUD_MIDI_RX_BUFSIZE 128
72+
#define CFG_TUD_MIDI_TX_BUFSIZE 128
7373

7474
// Vendor FIFO size of TX and RX
7575
#define CFG_TUD_VENDOR_RX_BUFSIZE 64

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)