File tree 2 files changed +43
-1
lines changed
2 files changed +43
-1
lines changed Original file line number Diff line number Diff line change
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file.
4
+
5
+ ## [ Unreleased]
6
+
7
+ ### Fixed
8
+ - min/max macros changed to fix compilation issues in some cases.
9
+ - ADC value is now volatile to prevent the compiler from optimizing it and always returning 0.
10
+ - min definition added to fix error when compiling with extended advertising enabled.
11
+ - PHY can now be correctly set when using extended advertising.
12
+ - System will no longer hang when printing to UART when it hasn't been started yet.
13
+ - Building on Windows when no DFU bin is being built will no longer cause an error.
14
+
15
+ ### Changed
16
+ - Use PRIx macros to remove compiler warnings.
17
+ - Watchdog timer is now disabled by default, users should enable manually.
18
+ - pulse assembly code replace with C code to resolve linker errors on Micro: Bit V2.
19
+
20
+ ### Added
21
+ - ` pins_arduino.h ` file to be more compatible with some libraries.
22
+ - Virtual methods ` flush ` , ` availableForWrite ` added to ` Print ` for compatibility.
23
+ - New constructor for ` String ` that takes a char* and length parameter.
24
+ - Support for nRF52810.
25
+ - Coded and/or 2M PHY for nRF52832, nRF52833, nRF52810 devices.
26
+ - Support for NimBLE core 1.5.0
27
+
28
+ ## [ 0.1.1] - 2022-08-26
29
+
30
+ ### Fixed
31
+ - Platformio build instructions.
32
+ - Fixed building Adafruit nRF52840 base boards.
33
+
34
+ ### Added
35
+ - GitHub actions builds
36
+
37
+ ## [ 0.1.0] - 2022-08-06
38
+
39
+ ### INITIAL RELEASE
Original file line number Diff line number Diff line change @@ -51,6 +51,9 @@ This Arduino Core does **not** contain any BLE functionality. It has been design
51
51
* [ Adafruit Feather nRF52832] ( https://www.adafruit.com/product/3406 )
52
52
* [ Ebyte E104-BT5032A-TB] ( https://www.ebyte.com/en/product-view-news.html?id=956 )
53
53
54
+ ### nRF52810
55
+ * [ Generic nRF52810 MCU] ( https://www.nordicsemi.com/Products/nRF52810 )
56
+
54
57
### nRF51
55
58
* [ Generic nRF51 MCU] ( https://www.nordicsemi.com/eng/Products/Bluetooth-low-energy/nRF51822 )
56
59
* [ BBC micro: bit ] ( https://microbit.org )
@@ -75,7 +78,7 @@ This Arduino Core does **not** contain any BLE functionality. It has been design
75
78
76
79
``` ini
77
80
[env]
78
- platform = https://github.com/h2zero/platform-n-able.git# 1.0.0
81
+ platform = https://github.com/h2zero/platform-n-able.git@^ 1.0.0
79
82
framework = arduino
80
83
lib_deps = h2zero/NimBLE-Arduino@^1.4.0
81
84
board = ...
You can’t perform that action at this time.
0 commit comments