From e6eb45eaeec46f5a7296bc15e5fd61131c33168f Mon Sep 17 00:00:00 2001 From: Ulf Lilleengen Date: Thu, 2 Sep 2021 10:46:49 +0200 Subject: [PATCH] Cargo fmt --- embassy-hal-common/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/embassy-hal-common/src/lib.rs b/embassy-hal-common/src/lib.rs index d2f6daba..ea20747e 100644 --- a/embassy-hal-common/src/lib.rs +++ b/embassy-hal-common/src/lib.rs @@ -6,9 +6,9 @@ pub(crate) mod fmt; pub mod interrupt; mod macros; pub mod peripheral; +pub mod ratio; pub mod ring_buffer; pub mod usb; -pub mod ratio; /// Low power blocking wait loop using WFE/SEV. pub fn low_power_wait_until(mut condition: impl FnMut() -> bool) {