Skip to content

Commit 6383861

Browse files
committed
update changelog
1 parent 5d2ea85 commit 6383861

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

changelog.md

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

3+
# 0.9.3
4+
5+
- Correct bootloader version text in IDE to 0.2.6
6+
- Fixed #173 ( PR #178 thanks Nenik)
7+
- Added Client Battery support BLEClientBas
8+
- Added BLE_GAP_EVT_CONN_PARAM_UPDATE_REQUEST event support for Central
9+
310
## 0.9.2
411

512
- Fully support Feather nRF52840

libraries/Bluefruit52Lib/src/BLECharacteristic.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -539,7 +539,7 @@ bool BLECharacteristic::notify(const void* data, uint16_t len)
539539
while ( remaining )
540540
{
541541
// TODO multiple connection support
542-
// With no free buffers, give the app a channce to retry gracefully
542+
// Failed if there is no free buffer
543543
if ( !Bluefruit.Gap.getHvnPacket( Bluefruit.connHandle() ) ) return false;
544544

545545
uint16_t packet_len = min16(max_payload, remaining);

0 commit comments

Comments
 (0)