embassy/embassy-rp-examples/src/bin/blinky.rs

34 lines
758 B
Rust
Raw Normal View History

2021-03-29 21:33:46 +02:00
#![no_std]
#![no_main]
#![feature(asm)]
#![feature(min_type_alias_impl_trait)]
#![feature(impl_trait_in_bindings)]
#![feature(type_alias_impl_trait)]
#![allow(incomplete_features)]
#[path = "../example_common.rs"]
mod example_common;
use defmt::*;
use embassy::executor::Spawner;
use embassy_rp::{gpio, Peripherals};
use embedded_hal::digital::v2::OutputPin;
2021-04-05 22:36:35 +02:00
use gpio::{Level, Output};
2021-03-29 21:33:46 +02:00
#[embassy::main]
async fn main(_spawner: Spawner) {
let p = unwrap!(Peripherals::take());
2021-04-05 22:36:35 +02:00
let mut led = Output::new(p.PIN_25, Level::Low);
2021-03-29 21:33:46 +02:00
loop {
info!("led on!");
led.set_high().unwrap();
cortex_m::asm::delay(1_000_000);
info!("led off!");
led.set_low().unwrap();
cortex_m::asm::delay(1_000_000);
}
}