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};
|
2021-04-05 22:36:35 +02:00
|
|
|
use gpio::{Level, Output};
|
2021-03-29 21:33:46 +02:00
|
|
|
|
|
|
|
#[embassy::main]
|
2021-05-12 01:57:01 +02:00
|
|
|
async fn main(_spawner: Spawner, p: Peripherals) {
|
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!");
|
2021-06-25 06:20:45 +02:00
|
|
|
led.set_high();
|
2021-03-29 21:33:46 +02:00
|
|
|
cortex_m::asm::delay(1_000_000);
|
|
|
|
|
|
|
|
info!("led off!");
|
2021-06-25 06:20:45 +02:00
|
|
|
led.set_low();
|
2021-03-29 21:33:46 +02:00
|
|
|
cortex_m::asm::delay(1_000_000);
|
|
|
|
}
|
|
|
|
}
|