embassy/examples/stm32f4/src/bin/rtc.rs

37 lines
876 B
Rust
Raw Normal View History

2023-04-18 00:02:40 +02:00
#![no_std]
#![no_main]
#![feature(type_alias_impl_trait)]
use chrono::{NaiveDate, NaiveDateTime};
use defmt::*;
use embassy_executor::Spawner;
use embassy_stm32::rtc::{Rtc, RtcConfig};
2023-08-27 22:25:12 +02:00
use embassy_stm32::Config;
2023-04-18 00:02:40 +02:00
use embassy_time::{Duration, Timer};
use {defmt_rtt as _, panic_probe as _};
#[embassy_executor::main]
async fn main(_spawner: Spawner) {
let config = Config::default();
2023-08-27 10:37:10 +02:00
let p = embassy_stm32::init(config);
2023-04-18 00:02:40 +02:00
info!("Hello World!");
let now = NaiveDate::from_ymd_opt(2020, 5, 15)
.unwrap()
.and_hms_opt(10, 30, 15)
.unwrap();
let mut rtc = Rtc::new(p.RTC, RtcConfig::default());
rtc.set_datetime(now.into()).expect("datetime not set");
2023-08-27 10:37:10 +02:00
loop {
let now: NaiveDateTime = rtc.now().unwrap().into();
info!("{}", now.timestamp());
2023-04-18 00:02:40 +02:00
2023-08-27 10:37:10 +02:00
Timer::after(Duration::from_millis(1000)).await;
}
2023-04-18 00:02:40 +02:00
}