2020-12-29 23:56:32 +00:00
|
|
|
#![no_std]
|
|
|
|
#![no_main]
|
2021-03-17 01:48:16 +00:00
|
|
|
#![feature(min_type_alias_impl_trait)]
|
|
|
|
#![feature(impl_trait_in_bindings)]
|
2020-12-29 23:56:32 +00:00
|
|
|
#![feature(type_alias_impl_trait)]
|
2021-03-27 02:12:58 +00:00
|
|
|
#![allow(incomplete_features)]
|
2020-12-29 23:56:32 +00:00
|
|
|
|
|
|
|
#[path = "../example_common.rs"]
|
|
|
|
mod example_common;
|
|
|
|
use example_common::*;
|
|
|
|
|
|
|
|
use core::task::Poll;
|
|
|
|
use cortex_m_rt::entry;
|
|
|
|
use defmt::panic;
|
|
|
|
use embassy::executor::{task, Executor};
|
|
|
|
use embassy::time::{Duration, Instant, Timer};
|
|
|
|
use embassy::util::Forever;
|
2021-03-27 02:12:58 +00:00
|
|
|
use embassy_nrf::peripherals;
|
2020-12-29 23:56:32 +00:00
|
|
|
use embassy_nrf::{interrupt, rtc};
|
|
|
|
|
|
|
|
#[task]
|
|
|
|
async fn run1() {
|
|
|
|
loop {
|
|
|
|
info!("DING DONG");
|
|
|
|
Timer::after(Duration::from_ticks(16000)).await;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[task]
|
|
|
|
async fn run2() {
|
|
|
|
loop {
|
|
|
|
Timer::at(Instant::from_ticks(0)).await;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[task]
|
|
|
|
async fn run3() {
|
|
|
|
futures::future::poll_fn(|cx| {
|
|
|
|
cx.waker().wake_by_ref();
|
|
|
|
Poll::<()>::Pending
|
|
|
|
})
|
|
|
|
.await;
|
|
|
|
}
|
|
|
|
|
2021-03-27 02:12:58 +00:00
|
|
|
static RTC: Forever<rtc::RTC<peripherals::RTC1>> = Forever::new();
|
|
|
|
static ALARM: Forever<rtc::Alarm<peripherals::RTC1>> = Forever::new();
|
2020-12-29 23:56:32 +00:00
|
|
|
static EXECUTOR: Forever<Executor> = Forever::new();
|
|
|
|
|
|
|
|
#[entry]
|
|
|
|
fn main() -> ! {
|
|
|
|
info!("Hello World!");
|
|
|
|
|
2021-03-27 02:12:58 +00:00
|
|
|
let p = unwrap!(embassy_nrf::Peripherals::take());
|
2020-12-29 23:56:32 +00:00
|
|
|
|
2021-03-28 22:42:08 +00:00
|
|
|
unsafe { embassy_nrf::system::configure(Default::default()) };
|
2020-12-29 23:56:32 +00:00
|
|
|
let rtc = RTC.put(rtc::RTC::new(p.RTC1, interrupt::take!(RTC1)));
|
|
|
|
rtc.start();
|
|
|
|
unsafe { embassy::time::set_clock(rtc) };
|
|
|
|
|
|
|
|
let alarm = ALARM.put(rtc.alarm0());
|
2021-02-02 04:14:52 +00:00
|
|
|
let executor = EXECUTOR.put(Executor::new());
|
|
|
|
executor.set_alarm(alarm);
|
|
|
|
executor.run(|spawner| {
|
|
|
|
unwrap!(spawner.spawn(run1()));
|
|
|
|
unwrap!(spawner.spawn(run2()));
|
|
|
|
unwrap!(spawner.spawn(run3()));
|
|
|
|
});
|
2020-12-29 23:56:32 +00:00
|
|
|
}
|