blob: d1f0123ff9f8761f3f50d1f55559a35f0c801ccc [file]
#![no_std]
use core::fmt::Write;
use futures::future;
use libtock::result::TockResult;
use libtock::timer;
use libtock::timer::Duration;
use libtock::Hardware;
#[libtock::main]
async fn main() -> TockResult<()> {
let Hardware { console_driver, .. } = libtock::retrieve_hardware()?;
let mut console = console_driver.create_console();
let mut with_callback = timer::with_callback(|_, _| {
writeln!(
console,
"This line is printed 2 seconds after the start of the program.",
)
.unwrap();
});
let mut timer = with_callback.init()?;
timer.set_alarm(Duration::from_ms(2000))?;
future::pending().await
}