Skip to content

Commit

Permalink
Merge pull request #487 from adafruit/release-0.20.0
Browse files Browse the repository at this point in the history
prepare for 0.20.0 release
  • Loading branch information
hathach authored Apr 22, 2020
2 parents d28219b + 9f63c9c commit 2a1e2a0
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 5 deletions.
9 changes: 9 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Adafruit nRF52 Arduino Core Changelog

## 0.20.0 - 2020.04.21

- Fixed Wire write ambigou
- Improved debugging with log and sysview, thanks to @henrygab
- Fixed recipe to compute SRAM and ROM of sketch
- Removed the force waiting Serial when debug is enabled
- Updated nrfx to v2.1.0
- Updated TinyUSB to commit 718db7e

## 0.19.0 - 2020.03.12

- Add BLECharacteristic::isFixedLen()
Expand Down
8 changes: 8 additions & 0 deletions cores/nRF5/TinyUSB/Adafruit_TinyUSB_nRF.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,15 @@
//--------------------------------------------------------------------+
extern "C" void USBD_IRQHandler(void)
{
#if CFG_SYSVIEW
SEGGER_SYSVIEW_RecordEnterISR();
#endif

tud_int_handler(0);

#if CFG_SYSVIEW
SEGGER_SYSVIEW_RecordExitISR();
#endif
}

//--------------------------------------------------------------------+
Expand Down
4 changes: 2 additions & 2 deletions cores/nRF5/TinyUSB/tusb_config.h
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,8 @@
#define CFG_TUD_HID_BUFSIZE 64

// MIDI FIFO size of TX and RX
#define CFG_TUD_MIDI_RX_BUFSIZE 64
#define CFG_TUD_MIDI_TX_BUFSIZE 64
#define CFG_TUD_MIDI_RX_BUFSIZE 128
#define CFG_TUD_MIDI_TX_BUFSIZE 128

// Vendor FIFO size of TX and RX
#define CFG_TUD_VENDOR_RX_BUFSIZE 64
Expand Down
2 changes: 1 addition & 1 deletion libraries/Bluefruit52Lib/library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=Adafruit Bluefruit nRF52 Libraries
version=0.19.0
version=0.20.0
author=Adafruit
maintainer=Adafruit <[email protected]>
sentence=Arduino library for nRF52-based Adafruit Bluefruit LE modules
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=0.19.0
version=0.20.0

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

0 comments on commit 2a1e2a0

Please sign in to comment.