1mod datetime;
3
4#[cfg(feature = "low-power")]
5mod low_power;
6
7#[cfg(feature = "low-power")]
8use core::cell::Cell;
9
10#[cfg(feature = "low-power")]
11use embassy_sync::blocking_mutex::raw::CriticalSectionRawMutex;
12#[cfg(feature = "low-power")]
13use embassy_sync::blocking_mutex::Mutex;
14
15use self::datetime::{day_of_week_from_u8, day_of_week_to_u8};
16pub use self::datetime::{DateTime, DayOfWeek, Error as DateTimeError};
17use crate::pac::rtc::regs::{Dr, Tr};
18use crate::time::Hertz;
19
20#[cfg_attr(any(rtc_v1), path = "v1.rs")]
22#[cfg_attr(
23 any(
24 rtc_v2f0, rtc_v2f2, rtc_v2f3, rtc_v2f4, rtc_v2f7, rtc_v2h7, rtc_v2l0, rtc_v2l1, rtc_v2l4, rtc_v2wb
25 ),
26 path = "v2.rs"
27)]
28#[cfg_attr(any(rtc_v3, rtc_v3u5, rtc_v3l5), path = "v3.rs")]
29mod _version;
30#[allow(unused_imports)]
31pub use _version::*;
32use embassy_hal_internal::Peripheral;
33
34use crate::peripherals::RTC;
35
36#[non_exhaustive]
38#[derive(Clone, Debug, PartialEq, Eq)]
39pub enum RtcError {
40 InvalidDateTime(DateTimeError),
42
43 ReadFailure,
45
46 NotRunning,
48}
49
50pub struct RtcTimeProvider {
52 _private: (),
53}
54
55impl RtcTimeProvider {
56 pub fn now(&self) -> Result<DateTime, RtcError> {
62 self.read(|dr, tr, _| {
63 let second = bcd2_to_byte((tr.st(), tr.su()));
64 let minute = bcd2_to_byte((tr.mnt(), tr.mnu()));
65 let hour = bcd2_to_byte((tr.ht(), tr.hu()));
66
67 let weekday = day_of_week_from_u8(dr.wdu()).map_err(RtcError::InvalidDateTime)?;
68 let day = bcd2_to_byte((dr.dt(), dr.du()));
69 let month = bcd2_to_byte((dr.mt() as u8, dr.mu()));
70 let year = bcd2_to_byte((dr.yt(), dr.yu())) as u16 + 2000_u16;
71
72 DateTime::from(year, month, day, weekday, hour, minute, second).map_err(RtcError::InvalidDateTime)
73 })
74 }
75
76 fn read<R>(&self, mut f: impl FnMut(Dr, Tr, u16) -> Result<R, RtcError>) -> Result<R, RtcError> {
77 let r = RTC::regs();
78
79 #[cfg(not(rtc_v2f2))]
80 let read_ss = || r.ssr().read().ss();
81 #[cfg(rtc_v2f2)]
82 let read_ss = || 0;
83
84 let mut ss = read_ss();
85 for _ in 0..5 {
86 let tr = r.tr().read();
87 let dr = r.dr().read();
88 let ss_after = read_ss();
89
90 if ss == ss_after {
93 return f(dr, tr, ss.try_into().unwrap());
94 } else {
95 ss = ss_after
96 }
97 }
98
99 Err(RtcError::ReadFailure)
100 }
101}
102
103pub struct Rtc {
105 #[cfg(feature = "low-power")]
106 stop_time: Mutex<CriticalSectionRawMutex, Cell<Option<low_power::RtcInstant>>>,
107 _private: (),
108}
109
110#[non_exhaustive]
112#[derive(Copy, Clone, PartialEq)]
113pub struct RtcConfig {
114 pub frequency: Hertz,
118}
119
120impl Default for RtcConfig {
121 fn default() -> Self {
124 RtcConfig { frequency: Hertz(256) }
125 }
126}
127
128#[derive(Default, Copy, Clone, Debug, PartialEq)]
130#[repr(u8)]
131pub enum RtcCalibrationCyclePeriod {
132 Seconds8,
134 Seconds16,
136 #[default]
138 Seconds32,
139}
140
141impl Rtc {
142 pub fn new(_rtc: impl Peripheral<P = RTC>, rtc_config: RtcConfig) -> Self {
144 #[cfg(not(any(stm32l0, stm32f3, stm32l1, stm32f0, stm32f2)))]
145 crate::rcc::enable_and_reset::<RTC>();
146
147 let mut this = Self {
148 #[cfg(feature = "low-power")]
149 stop_time: Mutex::const_new(CriticalSectionRawMutex::new(), Cell::new(None)),
150 _private: (),
151 };
152
153 let frequency = Self::frequency();
154 let async_psc = ((frequency.0 / rtc_config.frequency.0) - 1) as u8;
155 let sync_psc = (rtc_config.frequency.0 - 1) as u16;
156
157 this.configure(async_psc, sync_psc);
158
159 #[cfg(not(rtc_v2f2))]
161 {
162 let now = this.time_provider().read(|_, _, ss| Ok(ss)).unwrap();
163 while now == this.time_provider().read(|_, _, ss| Ok(ss)).unwrap() {}
164 }
165
166 this
167 }
168
169 fn frequency() -> Hertz {
170 let freqs = unsafe { crate::rcc::get_freqs() };
171 freqs.rtc.to_hertz().unwrap()
172 }
173
174 pub const fn time_provider(&self) -> RtcTimeProvider {
176 RtcTimeProvider { _private: () }
177 }
178
179 pub fn set_datetime(&mut self, t: DateTime) -> Result<(), RtcError> {
185 self.write(true, |rtc| {
186 let (ht, hu) = byte_to_bcd2(t.hour());
187 let (mnt, mnu) = byte_to_bcd2(t.minute());
188 let (st, su) = byte_to_bcd2(t.second());
189
190 let (dt, du) = byte_to_bcd2(t.day());
191 let (mt, mu) = byte_to_bcd2(t.month());
192 let yr = t.year();
193 let yr_offset = (yr - 2000_u16) as u8;
194 let (yt, yu) = byte_to_bcd2(yr_offset);
195
196 use crate::pac::rtc::vals::Ampm;
197
198 rtc.tr().write(|w| {
199 w.set_ht(ht);
200 w.set_hu(hu);
201 w.set_mnt(mnt);
202 w.set_mnu(mnu);
203 w.set_st(st);
204 w.set_su(su);
205 w.set_pm(Ampm::AM);
206 });
207
208 rtc.dr().write(|w| {
209 w.set_dt(dt);
210 w.set_du(du);
211 w.set_mt(mt > 0);
212 w.set_mu(mu);
213 w.set_yt(yt);
214 w.set_yu(yu);
215 w.set_wdu(day_of_week_to_u8(t.day_of_week()));
216 });
217 });
218
219 Ok(())
220 }
221
222 pub fn now(&self) -> Result<DateTime, RtcError> {
228 self.time_provider().now()
229 }
230
231 pub fn get_daylight_savings(&self) -> bool {
233 let cr = RTC::regs().cr().read();
234 cr.bkp()
235 }
236
237 pub fn set_daylight_savings(&mut self, daylight_savings: bool) {
239 self.write(true, |rtc| {
240 rtc.cr().modify(|w| w.set_bkp(daylight_savings));
241 })
242 }
243
244 pub const BACKUP_REGISTER_COUNT: usize = RTC::BACKUP_REGISTER_COUNT;
246
247 pub fn read_backup_register(&self, register: usize) -> Option<u32> {
252 RTC::read_backup_register(RTC::regs(), register)
253 }
254
255 pub fn write_backup_register(&self, register: usize, value: u32) {
260 RTC::write_backup_register(RTC::regs(), register, value)
261 }
262}
263
264pub(crate) fn byte_to_bcd2(byte: u8) -> (u8, u8) {
265 let mut bcd_high: u8 = 0;
266 let mut value = byte;
267
268 while value >= 10 {
269 bcd_high += 1;
270 value -= 10;
271 }
272
273 (bcd_high, ((bcd_high << 4) | value))
274}
275
276pub(crate) fn bcd2_to_byte(bcd: (u8, u8)) -> u8 {
277 let value = bcd.1 | bcd.0 << 4;
278
279 let tmp = ((value & 0xF0) >> 0x4) * 10;
280
281 tmp + (value & 0x0F)
282}
283
284trait SealedInstance {
285 const BACKUP_REGISTER_COUNT: usize;
286
287 #[cfg(feature = "low-power")]
288 #[cfg(not(any(stm32u5, stm32u0)))]
289 const EXTI_WAKEUP_LINE: usize;
290
291 #[cfg(feature = "low-power")]
292 type WakeupInterrupt: crate::interrupt::typelevel::Interrupt;
293
294 fn regs() -> crate::pac::rtc::Rtc {
295 crate::pac::RTC
296 }
297
298 fn read_backup_register(rtc: crate::pac::rtc::Rtc, register: usize) -> Option<u32>;
303
304 fn write_backup_register(rtc: crate::pac::rtc::Rtc, register: usize, value: u32);
309
310 }