summaryrefslogtreecommitdiff
path: root/docs/modules/ROOT/examples/layer-by-layer/blinky-async
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2022-08-17 20:27:42 +0000
committerGitHub <noreply@github.com>2022-08-17 20:27:42 +0000
commit1c5b54a4823d596db730eb476c3ab78110557214 (patch)
tree1d22c32eae26435677df89083d71f50fc298a09f /docs/modules/ROOT/examples/layer-by-layer/blinky-async
parentd881f3ad9186cf3279aa1ba27093bad94035c186 (diff)
parent2e85eaf7d5f4dcf6d84f426542b8ec87aa51c429 (diff)
downloadembassy-1c5b54a4823d596db730eb476c3ab78110557214.zip
Merge #908
908: Remove HAL initialization from #[embassy_executor::main] macro. r=Dirbaio a=Dirbaio Co-authored-by: Dario Nieuwenhuis <dirbaio@dirbaio.net>
Diffstat (limited to 'docs/modules/ROOT/examples/layer-by-layer/blinky-async')
-rw-r--r--docs/modules/ROOT/examples/layer-by-layer/blinky-async/src/main.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/modules/ROOT/examples/layer-by-layer/blinky-async/src/main.rs b/docs/modules/ROOT/examples/layer-by-layer/blinky-async/src/main.rs
index b944a799..7d62b610 100644
--- a/docs/modules/ROOT/examples/layer-by-layer/blinky-async/src/main.rs
+++ b/docs/modules/ROOT/examples/layer-by-layer/blinky-async/src/main.rs
@@ -5,11 +5,11 @@
use embassy_executor::executor::Spawner;
use embassy_stm32::exti::ExtiInput;
use embassy_stm32::gpio::{Input, Level, Output, Pull, Speed};
-use embassy_stm32::Peripherals;
use {defmt_rtt as _, panic_probe as _};
#[embassy_executor::main]
-async fn main(_s: Spawner, p: Peripherals) {
+async fn main(_spawner: Spawner) {
+ let p = embassy_stm32::init(Default::default());
let mut led = Output::new(p.PB14, Level::Low, Speed::VeryHigh);
let mut button = ExtiInput::new(Input::new(p.PC13, Pull::Up), p.EXTI13);