Skip to content

Commit 2bed907

Browse files
committed
use StandardId, ExtendedId and Id from embedded-can instead of implementing our own
1 parent 3ddfc77 commit 2bed907

File tree

3 files changed

+4
-116
lines changed

3 files changed

+4
-116
lines changed

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,9 @@
22

33
## Unreleased
44

5-
No changes.
5+
### Other Changes
6+
7+
* use `StandardId`, `ExtendedId` and `Id` from embedded-can instead of implementing our own
68

79
## [0.8.0 - 2024-09-17](https://github.com/stm32-rs/bxcan/releases/tag/v0.8.0)
810

src/id.rs

Lines changed: 0 additions & 113 deletions
This file was deleted.

src/lib.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,13 +35,12 @@
3535
mod embedded_hal;
3636
pub mod filter;
3737
mod frame;
38-
mod id;
3938
mod interrupt;
4039

4140
#[allow(clippy::all)] // generated code
4241
mod pac;
4342

44-
pub use id::{ExtendedId, Id, StandardId};
43+
pub use embedded_can_04::{ExtendedId, Id, StandardId};
4544

4645
pub use crate::frame::{Data, Frame, FramePriority};
4746
pub use crate::interrupt::{Interrupt, Interrupts};

0 commit comments

Comments
 (0)