Skip to content

Commit 10f8db8

Browse files
committed
update tinyusb libary to 1.2
fix example warnings bump release to 0.24.0
1 parent 06c40e1 commit 10f8db8

File tree

6 files changed

+10
-96
lines changed

6 files changed

+10
-96
lines changed

changelog.md

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

3+
## 0.24.0 - 2021.06.25
4+
5+
- Update included TinyUSB libraries to 1.2.0
6+
37
## 0.23.0 - 2021.06.22
48

59
- Fix CryptoCell usage issue that prevent mcu to go to sleep causing high power consumption

cores/nRF5/tusb_config.h

Lines changed: 0 additions & 90 deletions
This file was deleted.

libraries/Bluefruit52Lib/examples/Central/central_pairing/central_pairing.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ bool pairing_passkey_callback(uint16_t conn_handle, uint8_t const passkey[6], bo
267267
tft->println();
268268

269269
// wait until either button is pressed (30 seconds timeout)
270-
uint32_t justReleased;
270+
uint32_t justReleased = 0;
271271
do
272272
{
273273
if ( millis() > start_time + 30000 ) break;

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.23.0
20+
version=0.24.0
2121

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

tools/build_all.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@
1515
fail_count = 0
1616
skip_count = 0
1717

18-
build_format = '| {:20} | {:35} | {:18} | {:6} |'
19-
build_separator = '-' * 83
18+
build_format = '| {:25} | {:35} | {:18} | {:6} |'
19+
build_separator = '-' * 88
2020

2121
default_boards = [ 'cluenrf52840', 'cplaynrf52840', 'feather52832', 'feather52840', 'feather52840sense', 'itsybitsy52840' ]
2222
build_boards = []
@@ -35,7 +35,7 @@ def build_examples(variant):
3535

3636
print('\n')
3737
print(build_separator)
38-
print('| {:^79} |'.format('Board ' + variant))
38+
print('| {:^84} |'.format('Board ' + variant))
3939
print(build_separator)
4040
print(build_format.format('Library', 'Example', '\033[39mResult\033[0m', 'Time'))
4141
print(build_separator)

0 commit comments

Comments
 (0)