2022-09-29 07:49:32 +02:00
|
|
|
//! RTC peripheral abstraction
|
|
|
|
mod datetime;
|
|
|
|
|
2023-08-27 03:31:12 +02:00
|
|
|
#[cfg(feature = "low-power")]
|
|
|
|
use core::cell::Cell;
|
|
|
|
|
|
|
|
#[cfg(feature = "low-power")]
|
|
|
|
use embassy_sync::blocking_mutex::raw::CriticalSectionRawMutex;
|
|
|
|
#[cfg(feature = "low-power")]
|
|
|
|
use embassy_sync::blocking_mutex::Mutex;
|
|
|
|
|
2022-09-29 07:49:32 +02:00
|
|
|
pub use self::datetime::{DateTime, DayOfWeek, Error as DateTimeError};
|
2023-08-27 16:07:34 +02:00
|
|
|
use crate::rcc::bd::BackupDomain;
|
2023-08-27 16:25:14 +02:00
|
|
|
pub use crate::rcc::RtcClockSource;
|
2022-09-29 07:49:32 +02:00
|
|
|
|
|
|
|
/// refer to AN4759 to compare features of RTC2 and RTC3
|
|
|
|
#[cfg_attr(any(rtc_v1), path = "v1.rs")]
|
|
|
|
#[cfg_attr(
|
|
|
|
any(
|
|
|
|
rtc_v2f0, rtc_v2f2, rtc_v2f3, rtc_v2f4, rtc_v2f7, rtc_v2h7, rtc_v2l0, rtc_v2l1, rtc_v2l4, rtc_v2wb
|
|
|
|
),
|
2023-04-18 00:02:40 +02:00
|
|
|
path = "v2.rs"
|
2022-09-29 07:49:32 +02:00
|
|
|
)]
|
|
|
|
#[cfg_attr(any(rtc_v3, rtc_v3u5), path = "v3.rs")]
|
2023-04-19 03:35:43 +02:00
|
|
|
mod _version;
|
2023-08-11 02:14:55 +02:00
|
|
|
#[allow(unused_imports)]
|
2023-04-19 03:35:43 +02:00
|
|
|
pub use _version::*;
|
2023-07-28 13:23:22 +02:00
|
|
|
use embassy_hal_internal::Peripheral;
|
2022-09-29 07:49:32 +02:00
|
|
|
|
2023-08-09 02:47:01 +02:00
|
|
|
use crate::peripherals::RTC;
|
|
|
|
use crate::rtc::sealed::Instance;
|
|
|
|
|
2022-09-29 07:49:32 +02:00
|
|
|
/// Errors that can occur on methods on [RtcClock]
|
|
|
|
#[derive(Clone, Debug, PartialEq, Eq)]
|
|
|
|
pub enum RtcError {
|
|
|
|
/// An invalid DateTime was given or stored on the hardware.
|
|
|
|
InvalidDateTime(DateTimeError),
|
|
|
|
|
|
|
|
/// The RTC clock is not running
|
|
|
|
NotRunning,
|
|
|
|
}
|
|
|
|
|
2023-08-27 03:31:12 +02:00
|
|
|
#[cfg(feature = "low-power")]
|
|
|
|
/// Represents an instant in time that can be substracted to compute a duration
|
|
|
|
struct RtcInstant {
|
|
|
|
second: u8,
|
|
|
|
subsecond: u16,
|
|
|
|
}
|
|
|
|
|
2023-08-28 04:15:57 +02:00
|
|
|
#[cfg(all(feature = "low-power", feature = "defmt"))]
|
|
|
|
impl defmt::Format for RtcInstant {
|
|
|
|
fn format(&self, fmt: defmt::Formatter) {
|
|
|
|
defmt::write!(
|
|
|
|
fmt,
|
|
|
|
"{}:{}",
|
|
|
|
self.second,
|
|
|
|
RTC::regs().prer().read().prediv_s() - self.subsecond,
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-27 03:31:12 +02:00
|
|
|
#[cfg(feature = "low-power")]
|
|
|
|
impl core::ops::Sub for RtcInstant {
|
|
|
|
type Output = embassy_time::Duration;
|
|
|
|
|
|
|
|
fn sub(self, rhs: Self) -> Self::Output {
|
|
|
|
use embassy_time::{Duration, TICK_HZ};
|
|
|
|
|
|
|
|
let second = if self.second < rhs.second {
|
|
|
|
self.second + 60
|
|
|
|
} else {
|
|
|
|
self.second
|
|
|
|
};
|
|
|
|
|
2023-08-27 23:06:33 +02:00
|
|
|
let psc = RTC::regs().prer().read().prediv_s() as u32;
|
2023-08-27 03:31:12 +02:00
|
|
|
|
2023-08-27 23:06:33 +02:00
|
|
|
let self_ticks = second as u32 * (psc + 1) + (psc - self.subsecond as u32);
|
|
|
|
let other_ticks = rhs.second as u32 * (psc + 1) + (psc - rhs.subsecond as u32);
|
2023-08-27 03:31:12 +02:00
|
|
|
let rtc_ticks = self_ticks - other_ticks;
|
|
|
|
|
2023-08-28 04:24:16 +02:00
|
|
|
Duration::from_ticks(((rtc_ticks * TICK_HZ as u32) / (psc + 1)) as u64)
|
2023-08-27 03:31:12 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-29 07:49:32 +02:00
|
|
|
/// RTC Abstraction
|
2023-08-09 02:47:01 +02:00
|
|
|
pub struct Rtc {
|
2022-09-29 07:49:32 +02:00
|
|
|
rtc_config: RtcConfig,
|
2023-08-27 03:31:12 +02:00
|
|
|
#[cfg(feature = "low-power")]
|
|
|
|
stop_time: Mutex<CriticalSectionRawMutex, Cell<Option<RtcInstant>>>,
|
2022-09-29 07:49:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Copy, Clone, PartialEq)]
|
|
|
|
pub struct RtcConfig {
|
|
|
|
/// Asynchronous prescaler factor
|
|
|
|
/// This is the asynchronous division factor:
|
|
|
|
/// ck_apre frequency = RTCCLK frequency/(PREDIV_A+1)
|
|
|
|
/// ck_apre drives the subsecond register
|
|
|
|
async_prescaler: u8,
|
|
|
|
/// Synchronous prescaler factor
|
|
|
|
/// This is the synchronous division factor:
|
|
|
|
/// ck_spre frequency = ck_apre frequency/(PREDIV_S+1)
|
|
|
|
/// ck_spre must be 1Hz
|
|
|
|
sync_prescaler: u16,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for RtcConfig {
|
|
|
|
/// LSI with prescalers assuming 32.768 kHz.
|
|
|
|
/// Raw sub-seconds in 1/256.
|
|
|
|
fn default() -> Self {
|
|
|
|
RtcConfig {
|
|
|
|
async_prescaler: 127,
|
|
|
|
sync_prescaler: 255,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl RtcConfig {
|
|
|
|
/// Set the asynchronous prescaler of RTC config
|
|
|
|
pub fn async_prescaler(mut self, prescaler: u8) -> Self {
|
|
|
|
self.async_prescaler = prescaler;
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Set the synchronous prescaler of RTC config
|
|
|
|
pub fn sync_prescaler(mut self, prescaler: u16) -> Self {
|
|
|
|
self.sync_prescaler = prescaler;
|
|
|
|
self
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#[derive(Copy, Clone, Debug, PartialEq)]
|
|
|
|
#[repr(u8)]
|
|
|
|
pub enum RtcCalibrationCyclePeriod {
|
|
|
|
/// 8-second calibration period
|
|
|
|
Seconds8,
|
|
|
|
/// 16-second calibration period
|
|
|
|
Seconds16,
|
|
|
|
/// 32-second calibration period
|
|
|
|
Seconds32,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Default for RtcCalibrationCyclePeriod {
|
|
|
|
fn default() -> Self {
|
|
|
|
RtcCalibrationCyclePeriod::Seconds32
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-08-09 02:47:01 +02:00
|
|
|
impl Rtc {
|
|
|
|
pub fn new(_rtc: impl Peripheral<P = RTC>, rtc_config: RtcConfig) -> Self {
|
|
|
|
RTC::enable_peripheral_clk();
|
2022-09-29 07:49:32 +02:00
|
|
|
|
2023-08-27 03:31:12 +02:00
|
|
|
#[cfg(not(feature = "low-power"))]
|
2023-08-09 02:47:01 +02:00
|
|
|
let mut rtc_struct = Self { rtc_config };
|
2022-09-29 07:49:32 +02:00
|
|
|
|
2023-08-27 03:31:12 +02:00
|
|
|
#[cfg(feature = "low-power")]
|
|
|
|
let mut rtc_struct = Self {
|
|
|
|
rtc_config,
|
|
|
|
stop_time: Mutex::const_new(CriticalSectionRawMutex::new(), Cell::new(None)),
|
|
|
|
};
|
|
|
|
|
2023-08-27 16:07:34 +02:00
|
|
|
BackupDomain::enable_rtc();
|
2023-08-06 18:58:28 +02:00
|
|
|
|
|
|
|
rtc_struct.configure(rtc_config);
|
|
|
|
rtc_struct.rtc_config = rtc_config;
|
2022-09-29 07:49:32 +02:00
|
|
|
|
|
|
|
rtc_struct
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Set the datetime to a new value.
|
|
|
|
///
|
|
|
|
/// # Errors
|
|
|
|
///
|
|
|
|
/// Will return `RtcError::InvalidDateTime` if the datetime is not a valid range.
|
|
|
|
pub fn set_datetime(&mut self, t: DateTime) -> Result<(), RtcError> {
|
|
|
|
self::datetime::validate_datetime(&t).map_err(RtcError::InvalidDateTime)?;
|
|
|
|
self.write(true, |rtc| self::datetime::write_date_time(rtc, t));
|
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2023-08-28 04:26:29 +02:00
|
|
|
#[cfg(feature = "low-power")]
|
2023-08-27 23:06:33 +02:00
|
|
|
/// Return the current instant.
|
|
|
|
fn instant(&self) -> RtcInstant {
|
|
|
|
let r = RTC::regs();
|
|
|
|
let tr = r.tr().read();
|
|
|
|
let subsecond = r.ssr().read().ss();
|
|
|
|
let second = bcd2_to_byte((tr.st(), tr.su()));
|
|
|
|
|
|
|
|
// Unlock the registers
|
2023-08-28 04:15:57 +02:00
|
|
|
r.dr().read();
|
2023-08-27 23:06:33 +02:00
|
|
|
|
|
|
|
RtcInstant { second, subsecond }
|
|
|
|
}
|
|
|
|
|
2022-09-29 07:49:32 +02:00
|
|
|
/// Return the current datetime.
|
|
|
|
///
|
|
|
|
/// # Errors
|
|
|
|
///
|
|
|
|
/// Will return an `RtcError::InvalidDateTime` if the stored value in the system is not a valid [`DayOfWeek`].
|
|
|
|
pub fn now(&self) -> Result<DateTime, RtcError> {
|
2023-08-09 02:47:01 +02:00
|
|
|
let r = RTC::regs();
|
2023-06-19 03:07:26 +02:00
|
|
|
let tr = r.tr().read();
|
|
|
|
let second = bcd2_to_byte((tr.st(), tr.su()));
|
|
|
|
let minute = bcd2_to_byte((tr.mnt(), tr.mnu()));
|
|
|
|
let hour = bcd2_to_byte((tr.ht(), tr.hu()));
|
|
|
|
// Reading either RTC_SSR or RTC_TR locks the values in the higher-order
|
|
|
|
// calendar shadow registers until RTC_DR is read.
|
|
|
|
let dr = r.dr().read();
|
|
|
|
|
|
|
|
let weekday = dr.wdu();
|
|
|
|
let day = bcd2_to_byte((dr.dt(), dr.du()));
|
|
|
|
let month = bcd2_to_byte((dr.mt() as u8, dr.mu()));
|
|
|
|
let year = bcd2_to_byte((dr.yt(), dr.yu())) as u16 + 1970_u16;
|
|
|
|
|
|
|
|
self::datetime::datetime(year, month, day, weekday, hour, minute, second).map_err(RtcError::InvalidDateTime)
|
2022-09-29 07:49:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Check if daylight savings time is active.
|
|
|
|
pub fn get_daylight_savings(&self) -> bool {
|
2023-08-09 02:47:01 +02:00
|
|
|
let cr = RTC::regs().cr().read();
|
2022-09-29 07:49:32 +02:00
|
|
|
cr.bkp()
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Enable/disable daylight savings time.
|
|
|
|
pub fn set_daylight_savings(&mut self, daylight_savings: bool) {
|
|
|
|
self.write(true, |rtc| {
|
2023-06-19 03:07:26 +02:00
|
|
|
rtc.cr().modify(|w| w.set_bkp(daylight_savings));
|
2022-09-29 07:49:32 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn get_config(&self) -> RtcConfig {
|
|
|
|
self.rtc_config
|
|
|
|
}
|
|
|
|
|
2023-08-09 02:47:01 +02:00
|
|
|
pub const BACKUP_REGISTER_COUNT: usize = RTC::BACKUP_REGISTER_COUNT;
|
2022-09-29 07:49:32 +02:00
|
|
|
|
|
|
|
/// Read content of the backup register.
|
|
|
|
///
|
|
|
|
/// The registers retain their values during wakes from standby mode or system resets. They also
|
|
|
|
/// retain their value when Vdd is switched off as long as V_BAT is powered.
|
|
|
|
pub fn read_backup_register(&self, register: usize) -> Option<u32> {
|
2023-08-09 02:47:01 +02:00
|
|
|
RTC::read_backup_register(&RTC::regs(), register)
|
2022-09-29 07:49:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Set content of the backup register.
|
|
|
|
///
|
|
|
|
/// The registers retain their values during wakes from standby mode or system resets. They also
|
|
|
|
/// retain their value when Vdd is switched off as long as V_BAT is powered.
|
|
|
|
pub fn write_backup_register(&self, register: usize, value: u32) {
|
2023-08-09 02:47:01 +02:00
|
|
|
RTC::write_backup_register(&RTC::regs(), register, value)
|
2022-09-29 07:49:32 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn byte_to_bcd2(byte: u8) -> (u8, u8) {
|
|
|
|
let mut bcd_high: u8 = 0;
|
|
|
|
let mut value = byte;
|
|
|
|
|
|
|
|
while value >= 10 {
|
|
|
|
bcd_high += 1;
|
|
|
|
value -= 10;
|
|
|
|
}
|
|
|
|
|
|
|
|
(bcd_high, ((bcd_high << 4) | value) as u8)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) fn bcd2_to_byte(bcd: (u8, u8)) -> u8 {
|
|
|
|
let value = bcd.1 | bcd.0 << 4;
|
|
|
|
|
|
|
|
let tmp = ((value & 0xF0) >> 0x4) * 10;
|
|
|
|
|
|
|
|
tmp + (value & 0x0F)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub(crate) mod sealed {
|
2023-04-19 03:35:43 +02:00
|
|
|
use crate::pac::rtc::Rtc;
|
|
|
|
|
2022-09-29 07:49:32 +02:00
|
|
|
pub trait Instance {
|
2023-04-19 03:35:43 +02:00
|
|
|
const BACKUP_REGISTER_COUNT: usize;
|
2022-09-29 07:49:32 +02:00
|
|
|
|
2023-04-19 03:35:43 +02:00
|
|
|
fn regs() -> Rtc {
|
|
|
|
crate::pac::RTC
|
|
|
|
}
|
2022-09-29 07:49:32 +02:00
|
|
|
|
2023-06-19 03:07:26 +02:00
|
|
|
fn enable_peripheral_clk() {}
|
2023-04-19 03:35:43 +02:00
|
|
|
|
|
|
|
/// Read content of the backup register.
|
|
|
|
///
|
|
|
|
/// The registers retain their values during wakes from standby mode or system resets. They also
|
|
|
|
/// retain their value when Vdd is switched off as long as V_BAT is powered.
|
|
|
|
fn read_backup_register(rtc: &Rtc, register: usize) -> Option<u32>;
|
|
|
|
|
|
|
|
/// Set content of the backup register.
|
|
|
|
///
|
|
|
|
/// The registers retain their values during wakes from standby mode or system resets. They also
|
|
|
|
/// retain their value when Vdd is switched off as long as V_BAT is powered.
|
|
|
|
fn write_backup_register(rtc: &Rtc, register: usize, value: u32);
|
|
|
|
|
|
|
|
// fn apply_config(&mut self, rtc_config: RtcConfig);
|
2022-09-29 07:49:32 +02:00
|
|
|
}
|
|
|
|
}
|