Skip to content

Commit 3e49a15

Browse files
bors[bot]pdgilbert
andauthored
Merge #286
286: Test bxcan version relax r=therealprof a=pdgilbert This PR is to switch the version requirement for` bxcan` to ">=0.4, <0.6". See #285 for more details. Co-authored-by: Paul Gilbert <[email protected]>
2 parents 6a56889 + 40a6347 commit 3e49a15

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

CHANGELOG.md

+4-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
4545
- Added support for hardware-based CRC32 functionality
4646
- Add `MonoTimer` and `Instant` structs for basic time measurement.
4747
- Added support for I2S and SAI clocks
48-
- Added support for canbus with the bxcan crate (0.5.0).
48+
- Added support for canbus with the bxcan crate.[#273] The version range is `<=0.4, <0.6`. (Currently
49+
the latest version is `0.5.0`) [#286]
4950
- Added a `freeze_unchecked` method [#231]
5051
- Added support for the Real Time Clock (RTC)
5152
- Added option to bypass the HSE oscillator and use a clock input [#263]
@@ -57,6 +58,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
5758
[#262]: https://github.com/stm32-rs/stm32f4xx-hal/pull/262
5859
[#263]: https://github.com/stm32-rs/stm32f4xx-hal/pull/263
5960
[#278]: https://github.com/stm32-rs/stm32f4xx-hal/issues/278
61+
[#273]: https://github.com/stm32-rs/stm32f4xx-hal/pull/273
62+
[#286]: https://github.com/stm32-rs/stm32f4xx-hal/pull/286
6063

6164
### Fixed
6265

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ features = ["stm32f429", "rt", "usb_fs", "can"]
2626
targets = ["thumbv7em-none-eabihf"]
2727

2828
[dependencies]
29-
bxcan = { version = "0.5.0", optional = true }
29+
bxcan = { version = ">=0.4, <0.6", optional = true }
3030
cortex-m = ">=0.5.8,<0.7"
3131
cortex-m-rt = "0.6.10"
3232
nb = "0.1.2"

0 commit comments

Comments
 (0)