We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ddfc77 commit 2bed907Copy full SHA for 2bed907
CHANGELOG.md
@@ -2,7 +2,9 @@
2
3
## Unreleased
4
5
-No changes.
+### Other Changes
6
+
7
+* use `StandardId`, `ExtendedId` and `Id` from embedded-can instead of implementing our own
8
9
## [0.8.0 - 2024-09-17](https://github.com/stm32-rs/bxcan/releases/tag/v0.8.0)
10
src/id.rs
src/lib.rs
@@ -35,13 +35,12 @@
35
mod embedded_hal;
36
pub mod filter;
37
mod frame;
38
-mod id;
39
mod interrupt;
40
41
#[allow(clippy::all)] // generated code
42
mod pac;
43
44
-pub use id::{ExtendedId, Id, StandardId};
+pub use embedded_can_04::{ExtendedId, Id, StandardId};
45
46
pub use crate::frame::{Data, Frame, FramePriority};
47
pub use crate::interrupt::{Interrupt, Interrupts};
0 commit comments