Skip to content

Commit ccb4495

Browse files
committed
increase version, ready to release
1 parent 9cb3da8 commit ccb4495

File tree

4 files changed

+20
-3
lines changed

4 files changed

+20
-3
lines changed

changelog.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,23 @@
22

33
## Next Release
44

5+
## 0.12.1 - 2019.08.22
6+
7+
- Added CircuitPlay Blueffuit nRF52840 support
8+
- Added variant support for Particle Xenon, PR #317
9+
- Added PDM support
10+
- Switch compiler optimization from -Os to -Ofast
11+
- Improve BLEConnection throughput
12+
- Added requestPHY() to initate PHY switching to 2 MB, 1MB
13+
- Added requestDataLengthUpdate() to initate Data Length Update process
14+
- Added requestMtuExchange() to iniate MTU exchange procoess
15+
- Added requestConnectionParameter() to initate connection parameter process
16+
- Updated throughput and added central_throughput sketch (WIP)
17+
- Added image_upload example
18+
- Enhance mutex lock/unlock for fifo used by bleuart
19+
- Fixed multiples warning with tinyUSB descriptor template, PR #322
20+
- Fixed typo, PR #326
21+
522
## 0.12.0 - 2019.08.05
623

724
- Update tinyusb core to support webUSB & vendor class

libraries/Bluefruit52Lib/examples/Peripheral/image_upload/image_upload.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ void setup()
8383
Bluefruit.configPrphBandwidth(BANDWIDTH_MAX);
8484

8585
Bluefruit.begin();
86-
Bluefruit.setTxPower(8); // Check bluefruit.h for supported values
86+
Bluefruit.setTxPower(4); // Check bluefruit.h for supported values
8787
Bluefruit.setName("Bluefruit52");
8888
Bluefruit.Periph.setConnectCallback(connect_callback);
8989
Bluefruit.Periph.setDisconnectCallback(disconnect_callback);

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.12.0
2+
version=0.12.1
33
author=Adafruit
44
maintainer=Adafruit <[email protected]>
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.12.0
20+
version=0.12.1
2121

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

0 commit comments

Comments
 (0)