aboutsummaryrefslogtreecommitdiff
path: root/embassy-nxp/src/lib.rs
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2025-03-26 16:01:37 +0100
committerDario Nieuwenhuis <[email protected]>2025-03-27 15:18:06 +0100
commitd41eeeae79388f219bf6a84e2f7bde9f6b532516 (patch)
tree678b6fc732216e529dc38e6f65b72a309917ac32 /embassy-nxp/src/lib.rs
parent9edf5b7f049f95742b60b041e4443967d8a6b708 (diff)
Remove Peripheral trait, rename PeripheralRef->Peri.
Diffstat (limited to 'embassy-nxp/src/lib.rs')
-rw-r--r--embassy-nxp/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-nxp/src/lib.rs b/embassy-nxp/src/lib.rs
index 80fdecb2e..ad2056c06 100644
--- a/embassy-nxp/src/lib.rs
+++ b/embassy-nxp/src/lib.rs
@@ -4,7 +4,7 @@ pub mod gpio;
4mod pac_utils; 4mod pac_utils;
5pub mod pint; 5pub mod pint;
6 6
7pub use embassy_hal_internal::{into_ref, Peripheral, PeripheralRef}; 7pub use embassy_hal_internal::Peri;
8pub use lpc55_pac as pac; 8pub use lpc55_pac as pac;
9 9
10/// Initialize the `embassy-nxp` HAL with the provided configuration. 10/// Initialize the `embassy-nxp` HAL with the provided configuration.