mirror of
https://github.com/rtic-rs/rtic.git
synced 2025-12-18 05:45:19 +01:00
update to embedded-hal 1 (#879)
* update to eh1 * changelogs about embedded-hal 1.0
This commit is contained in:
parent
efb82b7b05
commit
af1b8e5d8b
6 changed files with 15 additions and 7 deletions
|
|
@ -11,6 +11,8 @@ For each category, _Added_, _Changed_, _Fixed_ add new entries at the top!
|
|||
|
||||
### Changed
|
||||
|
||||
- Using `embedded-hal` 1.0.
|
||||
|
||||
### Fixed
|
||||
|
||||
- `make_channel` now accepts `Type` expressions instead of only `TypePath` expressions.
|
||||
|
|
|
|||
|
|
@ -25,9 +25,9 @@ heapless = "0.8"
|
|||
critical-section = "1"
|
||||
rtic-common = { version = "1.0.0", path = "../rtic-common" }
|
||||
portable-atomic = { version = "1", default-features = false }
|
||||
embedded-hal = { version = "1.0.0-rc.2", optional = true }
|
||||
embedded-hal-async = { version = "1.0.0-rc.2", optional = true }
|
||||
embedded-hal-bus = { version = "0.1.0-rc.2", optional = true, features = ["async"] }
|
||||
embedded-hal = { version = "1.0", optional = true }
|
||||
embedded-hal-async = { version = "1.0", optional = true }
|
||||
embedded-hal-bus = { version = "0.1.0", optional = true, features = ["async"] }
|
||||
|
||||
[dev-dependencies]
|
||||
tokio = { version = "1", features = ["rt", "macros", "time"] }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue