aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--embassy-rp/src/gpio.rs6
-rw-r--r--embassy-stm32/src/gpio.rs6
2 files changed, 6 insertions, 6 deletions
diff --git a/embassy-rp/src/gpio.rs b/embassy-rp/src/gpio.rs
index f213bfeab..91cef8609 100644
--- a/embassy-rp/src/gpio.rs
+++ b/embassy-rp/src/gpio.rs
@@ -31,9 +31,9 @@ impl From<bool> for Level {
31 } 31 }
32} 32}
33 33
34impl Into<bool> for Level { 34impl From<Level> for bool {
35 fn into(self) -> bool { 35 fn from(level: Level) -> bool {
36 match self { 36 match level {
37 Level::Low => false, 37 Level::Low => false,
38 Level::High => true, 38 Level::High => true,
39 } 39 }
diff --git a/embassy-stm32/src/gpio.rs b/embassy-stm32/src/gpio.rs
index 4895684e0..7a066a4ca 100644
--- a/embassy-stm32/src/gpio.rs
+++ b/embassy-stm32/src/gpio.rs
@@ -341,9 +341,9 @@ impl From<bool> for Level {
341 } 341 }
342} 342}
343 343
344impl Into<bool> for Level { 344impl From<Level> for bool {
345 fn into(self) -> bool { 345 fn from(level: Level) -> bool {
346 match self { 346 match level {
347 Level::Low => false, 347 Level::Low => false,
348 Level::High => true, 348 Level::High => true,
349 } 349 }