File tree Expand file tree Collapse file tree 17 files changed +42
-23
lines changed Expand file tree Collapse file tree 17 files changed +42
-23
lines changed Original file line number Diff line number Diff line change 4
4
5
5
(no changes)
6
6
7
+ ## [ 0.14.0]
8
+
9
+ ### New Features
10
+
11
+ - Implement ` embedded_hal::serial ` traits for UARTE ([ #343 ] ).
12
+
13
+ ### Enhancements
14
+
15
+ - Update PACs and other dependencies ([ #357 ] ).
16
+
17
+ ### Fixes
18
+
19
+ - IEEE 802.15.4: automatically disable radio after transmission ([ #356 ] ).
20
+
21
+ [ #343 ] : https://github.com/nrf-rs/nrf-hal/pull/343
22
+ [ #356 ] : https://github.com/nrf-rs/nrf-hal/pull/356
23
+ [ #357 ] : https://github.com/nrf-rs/nrf-hal/pull/357
24
+
7
25
## [ 0.13.0]
8
26
9
27
### New Features
265
283
[ 0.12.1 ] : https://github.com/nrf-rs/nrf-hal/releases/tag/v0.12.1
266
284
[ 0.12.2 ] : https://github.com/nrf-rs/nrf-hal/releases/tag/v0.12.2
267
285
[ 0.13.0 ] : https://github.com/nrf-rs/nrf-hal/releases/tag/v0.13.0
286
+ [ 0.14.0 ] : https://github.com/nrf-rs/nrf-hal/releases/tag/v0.14.0
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " nrf-hal-common"
3
- version = " 0.13 .0"
3
+ version = " 0.14 .0"
4
4
description = " Implementation details of the nRF HAL crates. Don't use this directly, use one of the specific HAL crates instead (`nrfXYZ-hal`)."
5
5
readme = " ../README.md"
6
6
Original file line number Diff line number Diff line change 1
1
//! Implementation details of the nRF HAL crates. Don't use this directly, use one of the specific
2
2
//! HAL crates instead (`nrfXYZ-hal`).
3
3
4
- #![ doc( html_root_url = "https://docs.rs/nrf-hal-common/0.13 .0" ) ]
4
+ #![ doc( html_root_url = "https://docs.rs/nrf-hal-common/0.14 .0" ) ]
5
5
#![ no_std]
6
6
7
7
use embedded_hal as hal;
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " nrf51-hal"
3
- version = " 0.13 .0"
3
+ version = " 0.14 .0"
4
4
edition = " 2018"
5
5
description = " HAL for nRF51 microcontrollers"
6
6
readme = " ../README.md"
@@ -25,7 +25,7 @@ nrf51-pac = "0.10.1"
25
25
path = " ../nrf-hal-common"
26
26
default-features = false
27
27
features = [" 51" ]
28
- version = " =0.13 .0"
28
+ version = " =0.14 .0"
29
29
30
30
[dependencies .embedded-hal ]
31
31
features = [" unproven" ]
Original file line number Diff line number Diff line change 1
1
#![ no_std]
2
- #![ doc( html_root_url = "https://docs.rs/nrf51-hal/0.13 .0" ) ]
2
+ #![ doc( html_root_url = "https://docs.rs/nrf51-hal/0.14 .0" ) ]
3
3
4
4
use embedded_hal as hal;
5
5
pub use nrf_hal_common:: * ;
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " nrf52810-hal"
3
- version = " 0.13 .0"
3
+ version = " 0.14 .0"
4
4
edition = " 2018"
5
5
description = " HAL for nRF52810 microcontrollers"
6
6
readme = " ../README.md"
@@ -24,7 +24,7 @@ nrf52810-pac = "0.10.1"
24
24
path = " ../nrf-hal-common"
25
25
default-features = false
26
26
features = [" 52810" ]
27
- version = " =0.13 .0"
27
+ version = " =0.14 .0"
28
28
29
29
[dependencies .embedded-hal ]
30
30
features = [" unproven" ]
Original file line number Diff line number Diff line change 1
1
#![ no_std]
2
- #![ doc( html_root_url = "https://docs.rs/nrf52810-hal/0.13 .0" ) ]
2
+ #![ doc( html_root_url = "https://docs.rs/nrf52810-hal/0.14 .0" ) ]
3
3
4
4
use embedded_hal as hal;
5
5
pub use nrf_hal_common:: * ;
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " nrf52811-hal"
3
- version = " 0.13 .0"
3
+ version = " 0.14 .0"
4
4
edition = " 2018"
5
5
description = " HAL for nRF52811 microcontrollers"
6
6
readme = " ../README.md"
@@ -24,7 +24,7 @@ nrf52811-pac = "0.10.1"
24
24
path = " ../nrf-hal-common"
25
25
default-features = false
26
26
features = [" 52811" ]
27
- version = " =0.13 .0"
27
+ version = " =0.14 .0"
28
28
29
29
[dependencies .embedded-hal ]
30
30
features = [" unproven" ]
Original file line number Diff line number Diff line change 1
1
#![ no_std]
2
- #![ doc( html_root_url = "https://docs.rs/nrf52811-hal/0.13 .0" ) ]
2
+ #![ doc( html_root_url = "https://docs.rs/nrf52811-hal/0.14 .0" ) ]
3
3
4
4
use embedded_hal as hal;
5
5
pub use nrf_hal_common:: * ;
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " nrf52832-hal"
3
- version = " 0.13 .0"
3
+ version = " 0.14 .0"
4
4
description = " HAL for nRF52832 microcontrollers"
5
5
readme = " ../README.md"
6
6
@@ -22,7 +22,7 @@ nrf52832-pac = "0.10.1"
22
22
path = " ../nrf-hal-common"
23
23
default-features = false
24
24
features = [" 52832" ]
25
- version = " =0.13 .0"
25
+ version = " =0.14 .0"
26
26
27
27
[dependencies .embedded-hal ]
28
28
features = [" unproven" ]
You can’t perform that action at this time.
0 commit comments