2020-09-24 20:46:00 +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-09-24 20:46:00 +00:00
|
|
|
#![feature(type_alias_impl_trait)]
|
2021-03-27 02:12:58 +00:00
|
|
|
#![allow(incomplete_features)]
|
2020-09-24 20:46:00 +00:00
|
|
|
|
|
|
|
#[path = "../example_common.rs"]
|
|
|
|
mod example_common;
|
|
|
|
use example_common::*;
|
|
|
|
|
2020-12-29 00:05:28 +00:00
|
|
|
use defmt::panic;
|
2021-03-29 01:00:48 +00:00
|
|
|
use embassy::executor::Spawner;
|
2021-02-14 00:41:36 +00:00
|
|
|
use embassy::time::{Duration, Timer};
|
2020-09-24 20:46:00 +00:00
|
|
|
|
2021-03-29 01:00:48 +00:00
|
|
|
#[embassy::task]
|
2020-09-25 01:25:06 +00:00
|
|
|
async fn run1() {
|
2020-09-24 20:46:00 +00:00
|
|
|
loop {
|
2020-09-25 01:25:06 +00:00
|
|
|
info!("BIG INFREQUENT TICK");
|
|
|
|
Timer::after(Duration::from_ticks(64000)).await;
|
2020-09-24 20:46:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-29 01:00:48 +00:00
|
|
|
#[embassy::task]
|
2020-09-25 01:25:06 +00:00
|
|
|
async fn run2() {
|
2020-09-24 20:46:00 +00:00
|
|
|
loop {
|
2020-09-25 01:25:06 +00:00
|
|
|
info!("tick");
|
|
|
|
Timer::after(Duration::from_ticks(13000)).await;
|
2020-09-24 20:46:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-03-29 00:47:10 +00:00
|
|
|
#[embassy::main]
|
|
|
|
async fn main(spawner: Spawner) {
|
|
|
|
unwrap!(spawner.spawn(run1()));
|
|
|
|
unwrap!(spawner.spawn(run2()));
|
2020-09-24 20:46:00 +00:00
|
|
|
}
|