aboutsummaryrefslogtreecommitdiff
path: root/embassy-rp/src/rtc/mod.rs
Commit message (Collapse)AuthorAgeFilesLines
* embassy-rp: doc comment spelling passRob Wells2025-10-271-1/+1
| | | | | All changes but one are to documentation comments, and one to an ordinary comment.
* Rustfmt for edition 2024.Dario Nieuwenhuis2025-10-061-1/+1
|
* Fix race condition in RTC alarm by using AtomicBool flag1-rafael-12025-09-151-6/+14
|
* alarm handling to poll hardware status directly; add ci test1-rafael-12025-09-151-13/+6
|
* embassy-rp (rp2040): Rtc wait_for_alarm1-rafael-12025-05-161-1/+121
|
* Remove Peripheral trait, rename PeripheralRef->Peri.Dario Nieuwenhuis2025-03-271-6/+4
|
* rp: remove mod sealed.Dario Nieuwenhuis2024-04-051-6/+5
|
* fix minor clippy lints in embassy_rpRafael Bachmann2024-03-181-2/+1
|
* docs: document all embassy-rp public apisUlf Lilleengen2023-12-191-0/+1
| | | | Enable missing doc warnings.
* docs: document spi, rtc and rest of uart for embassy-rpUlf Lilleengen2023-12-191-0/+1
|
* Rename embassy-hal-common to embassy-hal-internal, document it's for ↵Dario Nieuwenhuis2023-07-281-1/+1
| | | | internal use only. (#1700)
* RP: Add save/restore to Rtc. Example use.Henrik Berg2023-07-121-0/+30
|
* RP: Rename Rtc to match STM32 impl. Remove setting RTC in new().Henrik Berg2023-07-121-11/+9
|
* rp: update rp-pac.Dario Nieuwenhuis2023-06-161-49/+40
|
* ci: fix nrf, rp tests.Dario Nieuwenhuis2023-05-291-1/+1
|
* rp/clocks: store clock frequencies in rampennae2023-05-171-6/+1
| | | | | | | | | don't recalculate clock frequencies every time they are asked for. while this is not very often in practice it does consume a bunch of flash space that cannot be optimized away, and was pulled in unconditionally previously. while we technically only need the configured rosc, xosc and gpin frequencies it is easier to store all frequencies (and much cheaper at runtime too).
* Drive-by documentation link fixesGabriel Smith2022-11-271-1/+1
|
* Correctly enable RTC_IRQ when scheduling an RTC alarmMathias2022-10-121-0/+2
|
* Implement RealTimeClock for embassy-rpMathias2022-09-161-0/+188