aboutsummaryrefslogtreecommitdiff
path: root/embassy-hal-common/src/lib.rs
diff options
context:
space:
mode:
authorUlf Lilleengen <[email protected]>2021-09-02 10:46:49 +0200
committerUlf Lilleengen <[email protected]>2021-09-02 10:46:49 +0200
commite6eb45eaeec46f5a7296bc15e5fd61131c33168f (patch)
tree322f62a21d92e6c7a0b16abfebd05600020acf74 /embassy-hal-common/src/lib.rs
parentf175574bcfaecff8657a4ecb16bea8e58c12ea33 (diff)
Cargo fmt
Diffstat (limited to 'embassy-hal-common/src/lib.rs')
-rw-r--r--embassy-hal-common/src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-hal-common/src/lib.rs b/embassy-hal-common/src/lib.rs
index d2f6daba5..ea20747eb 100644
--- a/embassy-hal-common/src/lib.rs
+++ b/embassy-hal-common/src/lib.rs
@@ -6,9 +6,9 @@ pub(crate) mod fmt;
6pub mod interrupt; 6pub mod interrupt;
7mod macros; 7mod macros;
8pub mod peripheral; 8pub mod peripheral;
9pub mod ratio;
9pub mod ring_buffer; 10pub mod ring_buffer;
10pub mod usb; 11pub mod usb;
11pub mod ratio;
12 12
13/// Low power blocking wait loop using WFE/SEV. 13/// Low power blocking wait loop using WFE/SEV.
14pub fn low_power_wait_until(mut condition: impl FnMut() -> bool) { 14pub fn low_power_wait_until(mut condition: impl FnMut() -> bool) {