Skip to content

Commit ee736f7

Browse files
authored
Merge pull request #140 from nrf-rs/hal-update
Update HAL crates to 0.17.1.
2 parents 378bea7 + af8b417 commit ee736f7

File tree

4 files changed

+9
-10
lines changed

4 files changed

+9
-10
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
# Note this needs to be new enough to build the examples as well as
2929
# the library itself.
3030
- name: MSRV
31-
rust: 1.71.0
31+
rust: 1.73.0
3232

3333
name: "build (${{ matrix.name || matrix.rust }})"
3434

CHANGELOG.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
1717
- Update examples to use RTIC 1.0
1818
- Add ADC for micro:bit V1
1919
- Add analog example
20-
- Increase minimum supported Rust version to 1.71
20+
- Increase minimum supported Rust version to 1.73
2121
- Added support for the real time counters RTC1 and RTC2
2222
- Add common types and structs for the edge connector pads and pins
2323
- Add common ADC types and initialization for ADC and SAADC
@@ -26,9 +26,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
2626
- Servo example using TIMER, GPIOTE and PPI
2727
- (NFC) GitHub CI changes
2828
- Feature: Exposed all remaining peripherals for both boards.
29-
- Updated HAL crates to latest versions.
30-
- Updated to `embedded-hal` 1.0.
31-
- Updated magnetometer example to use `lsm303agr` 0.3.
29+
- Update HAL crates to 0.17.1.
30+
- Update to `embedded-hal` 1.0.
31+
- Update magnetometer example to use `lsm303agr` 1.0.
3232
- Update debug tooling from probe-run to probe-rs
3333

3434
## [0.13.0] - 2022-05-24

examples/magnetometer/Cargo.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,15 @@ embedded-hal = "1.0.0"
1010
panic-halt = "0.2.0"
1111
defmt-rtt = "0.4.0"
1212
defmt = "0.3.6"
13-
lsm303agr = "0.3.0"
13+
lsm303agr = "1.0.0"
1414

1515
[dependencies.microbit]
1616
path = "../../microbit"
1717
optional = true
18-
features = ["embedded-hal-02"]
1918

2019
[dependencies.microbit-v2]
2120
path = "../../microbit-v2"
2221
optional = true
23-
features = ["embedded-hal-02"]
2422

2523
[features]
2624
v1 = ["microbit"]

microbit-common/Cargo.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ version = "0.13.0"
44
description = "Implementation details for the BBC Micro:bit board support crates"
55
edition = "2018"
66
readme = "../README.md"
7+
rust-version = "1.73.0"
78

89
repository = "https://github.com/nrf-rs/microbit"
910
authors = [
@@ -30,13 +31,13 @@ embedded-hal = "1.0.0"
3031

3132
[dependencies.nrf51-hal]
3233
optional = true
33-
version = "0.17.0"
34+
version = "0.17.1"
3435
default-features = false
3536
features = ["rt", "xxAB-package"]
3637

3738
[dependencies.nrf52833-hal]
3839
optional = true
39-
version = "0.17.0"
40+
version = "0.17.1"
4041
default-features = false
4142
features = ["rt"]
4243

0 commit comments

Comments
 (0)