summaryrefslogtreecommitdiff
path: root/examples/stm32f3/src/bin
diff options
context:
space:
mode:
authorDario Nieuwenhuis <dirbaio@dirbaio.net>2022-01-14 22:02:00 +0100
committerDario Nieuwenhuis <dirbaio@dirbaio.net>2022-01-19 17:59:55 +0100
commit58fc64722c65bbdc209ae0fd1700f03702bbcd08 (patch)
tree77f9412b47259cd4cf4170b0a257b371398d4f2c /examples/stm32f3/src/bin
parent52e156b429417bde59d0ea67d11256866f1dcec9 (diff)
downloadembassy-58fc64722c65bbdc209ae0fd1700f03702bbcd08.zip
stm32/gpio: expose all functionality as inherent methods.
Diffstat (limited to 'examples/stm32f3/src/bin')
-rw-r--r--examples/stm32f3/src/bin/blinky.rs5
-rw-r--r--examples/stm32f3/src/bin/button.rs11
2 files changed, 7 insertions, 9 deletions
diff --git a/examples/stm32f3/src/bin/blinky.rs b/examples/stm32f3/src/bin/blinky.rs
index 32164355..e8b8dc23 100644
--- a/examples/stm32f3/src/bin/blinky.rs
+++ b/examples/stm32f3/src/bin/blinky.rs
@@ -9,7 +9,6 @@ use embassy::executor::Spawner;
use embassy::time::{Duration, Timer};
use embassy_stm32::gpio::{Level, Output, Speed};
use embassy_stm32::Peripherals;
-use embedded_hal::digital::v2::OutputPin;
use example_common::*;
#[embassy::main]
@@ -20,11 +19,11 @@ async fn main(_spawner: Spawner, p: Peripherals) {
loop {
info!("high");
- unwrap!(led.set_high());
+ led.set_high();
Timer::after(Duration::from_millis(1000)).await;
info!("low");
- unwrap!(led.set_low());
+ led.set_low();
Timer::after(Duration::from_millis(1000)).await;
}
}
diff --git a/examples/stm32f3/src/bin/button.rs b/examples/stm32f3/src/bin/button.rs
index c5fab138..131d4af4 100644
--- a/examples/stm32f3/src/bin/button.rs
+++ b/examples/stm32f3/src/bin/button.rs
@@ -6,7 +6,6 @@
mod example_common;
use cortex_m_rt::entry;
use embassy_stm32::gpio::{Input, Level, Output, Pull, Speed};
-use embedded_hal::digital::v2::{InputPin, OutputPin};
use example_common::*;
#[entry]
@@ -20,14 +19,14 @@ fn main() -> ! {
let mut led2 = Output::new(p.PE15, Level::High, Speed::Low);
loop {
- if unwrap!(button.is_high()) {
+ if button.is_high() {
info!("high");
- unwrap!(led1.set_high());
- unwrap!(led2.set_low());
+ led1.set_high();
+ led2.set_low();
} else {
info!("low");
- unwrap!(led1.set_low());
- unwrap!(led2.set_high());
+ led1.set_low();
+ led2.set_high();
}
}
}