embassy/embassy-nrf-examples/src/bin/timer.rs

67 lines
1.6 KiB
Rust
Raw Normal View History

2020-09-24 22:46:00 +02:00
#![no_std]
#![no_main]
2021-03-17 02:48:16 +01:00
#![feature(min_type_alias_impl_trait)]
#![feature(impl_trait_in_bindings)]
2020-09-24 22:46:00 +02:00
#![feature(type_alias_impl_trait)]
2021-03-27 03:12:58 +01:00
#![allow(incomplete_features)]
2020-09-24 22:46:00 +02:00
#[path = "../example_common.rs"]
mod example_common;
2021-03-27 03:12:58 +01:00
use core::mem;
2020-09-24 22:46:00 +02:00
use example_common::*;
use cortex_m_rt::entry;
2020-12-29 01:05:28 +01:00
use defmt::panic;
use embassy::executor::{task, Executor};
2021-02-14 01:41:36 +01:00
use embassy::time::{Duration, Timer};
2020-10-31 22:37:24 +01:00
use embassy::util::Forever;
2021-03-27 03:12:58 +01:00
use embassy_nrf::peripherals;
2020-12-29 01:05:28 +01:00
use embassy_nrf::{interrupt, rtc};
use nrf52840_hal::clocks;
2020-09-24 22:46:00 +02:00
#[task]
async fn run1() {
2020-09-24 22:46:00 +02:00
loop {
info!("BIG INFREQUENT TICK");
Timer::after(Duration::from_ticks(64000)).await;
2020-09-24 22:46:00 +02:00
}
}
#[task]
async fn run2() {
2020-09-24 22:46:00 +02:00
loop {
info!("tick");
Timer::after(Duration::from_ticks(13000)).await;
2020-09-24 22:46:00 +02:00
}
}
2021-03-27 03:12:58 +01:00
static RTC: Forever<rtc::RTC<peripherals::RTC1>> = Forever::new();
static ALARM: Forever<rtc::Alarm<peripherals::RTC1>> = Forever::new();
static EXECUTOR: Forever<Executor> = Forever::new();
2020-09-24 22:46:00 +02:00
#[entry]
fn main() -> ! {
info!("Hello World!");
2021-03-27 03:12:58 +01:00
clocks::Clocks::new(unsafe { mem::transmute(()) })
2020-09-24 22:46:00 +02:00
.enable_ext_hfosc()
.set_lfclk_src_external(clocks::LfOscConfiguration::NoExternalNoBypass)
.start_lfclk();
2021-03-27 03:12:58 +01:00
let p = unwrap!(embassy_nrf::Peripherals::take());
2020-12-29 01:05:28 +01:00
let rtc = RTC.put(rtc::RTC::new(p.RTC1, interrupt::take!(RTC1)));
rtc.start();
2020-10-31 22:37:24 +01:00
2020-09-25 23:38:42 +02:00
unsafe { embassy::time::set_clock(rtc) };
2020-09-24 22:46:00 +02:00
let alarm = ALARM.put(rtc.alarm0());
let executor = EXECUTOR.put(Executor::new());
executor.set_alarm(alarm);
executor.run(|spawner| {
unwrap!(spawner.spawn(run1()));
unwrap!(spawner.spawn(run2()));
});
2020-09-24 22:46:00 +02:00
}