Skip to content

Commit

Permalink
Merge #388
Browse files Browse the repository at this point in the history
388: 0.15.1 r=jonas-schievink a=jonas-schievink



Co-authored-by: Jonas Schievink <[email protected]>
  • Loading branch information
bors[bot] and Jonas Schievink authored May 31, 2022
2 parents 56e2752 + b8f6b89 commit 7623e05
Show file tree
Hide file tree
Showing 24 changed files with 53 additions and 34 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
thumbv7em-none-eabihf
thumbv8m.main-none-eabi
- name: Build Crates
run: mv Cargo.ci.toml Cargo.toml && cargo test -p xtask
run: mv Cargo.ci.toml Cargo.toml && cargo test
env:
RUSTFLAGS: ${{ matrix.rustflags }}

Expand Down
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ target/
[._]*.sw[a-p]
**/*.rs.bk
Cargo.lock
Cargo.toml
Cargo.my.toml
/Cargo.toml
/Cargo.my.toml

# Created by https://www.gitignore.io/api/intellij+all

Expand Down
22 changes: 20 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,25 @@

## Unreleased

- Fixed the nvmc erase procedure on nRF91 & nRF53 ([#387])
- Added support for the nrf5340-net-core.
(no changes)

## [0.15.1]

### New Features

- Support the nRF5340 Net Core ([#386]).
- Add internal VDD channels for the nRF51 ADC ([#382]).
- Implement `MultiWriteNorFlash` for the nRF9160 ([#383]).

### Fixes

- Fixed the nvmc erase procedure on nRF91 & nRF53 ([#387]).
- Fixed TWIM overruns being reported as `DataNack` errors ([#386]).

[#382]: https://github.com/nrf-rs/nrf-hal/pull/382
[#383]: https://github.com/nrf-rs/nrf-hal/pull/383
[#386]: https://github.com/nrf-rs/nrf-hal/pull/386
[#387]: https://github.com/nrf-rs/nrf-hal/pull/387

## [0.15.0]

Expand Down Expand Up @@ -321,3 +338,4 @@ None
[0.14.0]: https://github.com/nrf-rs/nrf-hal/releases/tag/v0.14.0
[0.14.1]: https://github.com/nrf-rs/nrf-hal/releases/tag/v0.14.1
[0.15.0]: https://github.com/nrf-rs/nrf-hal/releases/tag/v0.15.0
[0.15.1]: https://github.com/nrf-rs/nrf-hal/releases/tag/v0.15.1
1 change: 1 addition & 0 deletions Cargo.ci.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ members = [
"nrf9160-hal",
"examples/*",
]
default-members = ["xtask"]
exclude = ["examples/.cargo"]

[profile.dev]
Expand Down
2 changes: 1 addition & 1 deletion nrf-hal-common/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nrf-hal-common"
version = "0.15.0"
version = "0.15.1"
description = "Implementation details of the nRF HAL crates. Don't use this directly, use one of the specific HAL crates instead (`nrfXYZ-hal`)."
readme = "../README.md"

Expand Down
2 changes: 1 addition & 1 deletion nrf-hal-common/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
//! Implementation details of the nRF HAL crates. Don't use this directly, use one of the specific
//! HAL crates instead (`nrfXYZ-hal`).

#![doc(html_root_url = "https://docs.rs/nrf-hal-common/0.15.0")]
#![doc(html_root_url = "https://docs.rs/nrf-hal-common/0.15.1")]
#![no_std]

use embedded_hal as hal;
Expand Down
4 changes: 2 additions & 2 deletions nrf51-hal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nrf51-hal"
version = "0.15.0"
version = "0.15.1"
edition = "2018"
description = "HAL for nRF51 microcontrollers"
readme = "../README.md"
Expand All @@ -25,7 +25,7 @@ nrf51-pac = "0.11.0"
path = "../nrf-hal-common"
default-features = false
features = ["51"]
version = "=0.15.0"
version = "=0.15.1"

[dependencies.embedded-hal]
features = ["unproven"]
Expand Down
2 changes: 1 addition & 1 deletion nrf51-hal/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#![no_std]
#![doc(html_root_url = "https://docs.rs/nrf51-hal/0.15.0")]
#![doc(html_root_url = "https://docs.rs/nrf51-hal/0.15.1")]

use embedded_hal as hal;
pub use nrf_hal_common::*;
Expand Down
4 changes: 2 additions & 2 deletions nrf52810-hal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nrf52810-hal"
version = "0.15.0"
version = "0.15.1"
edition = "2018"
description = "HAL for nRF52810 microcontrollers"
readme = "../README.md"
Expand All @@ -24,7 +24,7 @@ nrf52810-pac = "0.11.0"
path = "../nrf-hal-common"
default-features = false
features = ["52810"]
version = "=0.15.0"
version = "=0.15.1"

[dependencies.embedded-hal]
features = ["unproven"]
Expand Down
2 changes: 1 addition & 1 deletion nrf52810-hal/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#![no_std]
#![doc(html_root_url = "https://docs.rs/nrf52810-hal/0.15.0")]
#![doc(html_root_url = "https://docs.rs/nrf52810-hal/0.15.1")]

use embedded_hal as hal;
pub use nrf_hal_common::*;
Expand Down
4 changes: 2 additions & 2 deletions nrf52811-hal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nrf52811-hal"
version = "0.15.0"
version = "0.15.1"
edition = "2018"
description = "HAL for nRF52811 microcontrollers"
readme = "../README.md"
Expand All @@ -24,7 +24,7 @@ nrf52811-pac = "0.11.0"
path = "../nrf-hal-common"
default-features = false
features = ["52811"]
version = "=0.15.0"
version = "=0.15.1"

[dependencies.embedded-hal]
features = ["unproven"]
Expand Down
2 changes: 1 addition & 1 deletion nrf52811-hal/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#![no_std]
#![doc(html_root_url = "https://docs.rs/nrf52811-hal/0.15.0")]
#![doc(html_root_url = "https://docs.rs/nrf52811-hal/0.15.1")]

use embedded_hal as hal;
pub use nrf_hal_common::*;
Expand Down
4 changes: 2 additions & 2 deletions nrf52832-hal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nrf52832-hal"
version = "0.15.0"
version = "0.15.1"
description = "HAL for nRF52832 microcontrollers"
readme = "../README.md"

Expand All @@ -22,7 +22,7 @@ nrf52832-pac = "0.11.0"
path = "../nrf-hal-common"
default-features = false
features = ["52832"]
version = "=0.15.0"
version = "=0.15.1"

[dependencies.embedded-hal]
features = ["unproven"]
Expand Down
2 changes: 1 addition & 1 deletion nrf52832-hal/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#![no_std]
#![doc(html_root_url = "https://docs.rs/nrf52832-hal/0.15.0")]
#![doc(html_root_url = "https://docs.rs/nrf52832-hal/0.15.1")]

use embedded_hal as hal;
pub use nrf_hal_common::*;
Expand Down
4 changes: 2 additions & 2 deletions nrf52833-hal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nrf52833-hal"
version = "0.15.0"
version = "0.15.1"
description = "HAL for nRF52833 microcontrollers"
readme = "../README.md"

Expand All @@ -25,7 +25,7 @@ nrf52833-pac = "0.11.0"
path = "../nrf-hal-common"
default-features = false
features = ["52833"]
version = "=0.15.0"
version = "=0.15.1"

[dependencies.embedded-hal]
features = ["unproven"]
Expand Down
2 changes: 1 addition & 1 deletion nrf52833-hal/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#![no_std]
#![doc(html_root_url = "https://docs.rs/nrf52833-hal/0.15.0")]
#![doc(html_root_url = "https://docs.rs/nrf52833-hal/0.15.1")]

use embedded_hal as hal;
pub use nrf_hal_common::*;
Expand Down
4 changes: 2 additions & 2 deletions nrf52840-hal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nrf52840-hal"
version = "0.15.0"
version = "0.15.1"
description = "HAL for nRF52840 microcontrollers"
readme = "../README.md"

Expand All @@ -24,7 +24,7 @@ nrf52840-pac = "0.11.0"
path = "../nrf-hal-common"
default-features = false
features = ["52840"]
version = "=0.15.0"
version = "=0.15.1"

[dependencies.embedded-hal]
features = ["unproven"]
Expand Down
2 changes: 1 addition & 1 deletion nrf52840-hal/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#![no_std]
#![doc(html_root_url = "https://docs.rs/nrf52840-hal/0.15.0")]
#![doc(html_root_url = "https://docs.rs/nrf52840-hal/0.15.1")]

use embedded_hal as hal;
pub use nrf_hal_common::*;
Expand Down
4 changes: 2 additions & 2 deletions nrf5340-app-hal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nrf5340-app-hal"
version = "0.15.0"
version = "0.15.1"
description = "HAL for nRF5340 app SoC"
readme = "../README.md"

Expand All @@ -22,7 +22,7 @@ nrf5340-app-pac = "0.11.0"
path = "../nrf-hal-common"
default-features = false
features = ["5340-app"]
version = "=0.15.0"
version = "=0.15.1"

[dependencies.embedded-hal]
features = ["unproven"]
Expand Down
2 changes: 1 addition & 1 deletion nrf5340-app-hal/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#![no_std]
#![doc(html_root_url = "https://docs.rs/nrf5340-app-hal/0.15.0")]
#![doc(html_root_url = "https://docs.rs/nrf5340-app-hal/0.15.1")]

use embedded_hal as hal;
pub use nrf_hal_common::*;
Expand Down
4 changes: 2 additions & 2 deletions nrf5340-net-hal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nrf5340-net-hal"
version = "0.15.0"
version = "0.15.1"
description = "HAL for nRF5340 net SoC"
readme = "../README.md"

Expand All @@ -18,7 +18,7 @@ nrf5340-net-pac = "0.11.0"
path = "../nrf-hal-common"
default-features = false
features = ["5340-net"]
version = "=0.15.0"
version = "=0.15.1"

[dependencies.embedded-hal]
features = ["unproven"]
Expand Down
2 changes: 1 addition & 1 deletion nrf5340-net-hal/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#![no_std]
#![doc(html_root_url = "https://docs.rs/nrf5340-net-hal/0.15.0")]
#![doc(html_root_url = "https://docs.rs/nrf5340-net-hal/0.15.1")]

use embedded_hal as hal;
pub use nrf_hal_common::*;
Expand Down
4 changes: 2 additions & 2 deletions nrf9160-hal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "nrf9160-hal"
version = "0.15.0"
version = "0.15.1"
description = "HAL for nRF9160 system-in-package"
readme = "../README.md"

Expand All @@ -21,7 +21,7 @@ nrf9160-pac = "0.11.0"
path = "../nrf-hal-common"
default-features = false
features = ["9160"]
version = "=0.15.0"
version = "=0.15.1"

[dependencies.embedded-hal]
features = ["unproven"]
Expand Down
2 changes: 1 addition & 1 deletion nrf9160-hal/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#![no_std]
#![doc(html_root_url = "https://docs.rs/nrf9160-hal/0.15.0")]
#![doc(html_root_url = "https://docs.rs/nrf9160-hal/0.15.1")]

use embedded_hal as hal;
pub use nrf_hal_common::*;
Expand Down

0 comments on commit 7623e05

Please sign in to comment.