| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | fix: avoid hang if calling now() before syscounter is enabled | Ulf Lilleengen | 2025-12-18 | 1 | -0/+4 |
| | | | | | | | If the time driver now() is called before the syscounter is enabled on nrf54, it would hang. The fix checks if syscounter is enabled, and returns 0 if not. | ||||
| * | chore: cleanup | Ulf Lilleengen | 2025-11-26 | 1 | -8/+3 |
| | | |||||
| * | feat: support nrf54 GRTC as time-driver | Ulf Lilleengen | 2025-11-26 | 1 | -34/+123 |
| | | | | | | | | * Refactor GRTC peripheral splitting it into multiple channels * Reserve channel 1 for time-driver if enabled * Implement time-driver using GRTC (RTC peripheral is now removed). * Add timer example to nrf54l15 | ||||
| * | Rustfmt for edition 2024. | Dario Nieuwenhuis | 2025-10-06 | 1 | -2/+2 |
| | | |||||
| * | Relax timestamp check | Ulf Lilleengen | 2025-01-02 | 1 | -1/+1 |
| | | |||||
| * | Move safeguard if compare irq is enabled | Ulf Lilleengen | 2025-01-02 | 1 | -5/+6 |
| | | |||||
| * | Update comment to reflect reality | Ulf Lilleengen | 2025-01-02 | 1 | -3/+3 |
| | | |||||
| * | Fix case where a short interrupt caused wrong alarm set | Ulf Lilleengen | 2025-01-02 | 1 | -2/+2 |
| | | |||||
| * | Ensure alarm is re-scheduled if timetamp is in the past | Ulf Lilleengen | 2025-01-01 | 1 | -37/+43 |
| | | | | | Fixes #3672 | ||||
| * | Rename ETQD, bump date | Dániel Buga | 2024-12-22 | 1 | -1/+1 |
| | | |||||
| * | Merge time-driver and time-queue-driver traits, make HALs own and handle the ↵ | Dario Nieuwenhuis | 2024-12-13 | 1 | -52/+63 |
| | | | | | queue. | ||||
| * | Refactor integrated-timers | Dániel Buga | 2024-12-10 | 1 | -78/+39 |
| | | |||||
| * | Use inline const for initializing arrays. (#3567) | Dario Nieuwenhuis | 2024-11-24 | 1 | -2/+1 |
| | | |||||
| * | nrf: add nrf54l base: gpio and time driver. | Dario Nieuwenhuis | 2024-11-17 | 1 | -2/+23 |
| | | |||||
| * | Update nrf-pac. | Dario Nieuwenhuis | 2024-11-15 | 1 | -1/+1 |
| | | |||||
| * | nrf: port to chiptool-based `nrf-pac`. | Dario Nieuwenhuis | 2024-11-04 | 1 | -23/+22 |
| | | |||||
| * | nightly fmt | Ulf Lilleengen | 2024-01-25 | 1 | -1/+1 |
| | | |||||
| * | modify time driver to not require portable-atomic | Ulf Lilleengen | 2024-01-24 | 1 | -11/+9 |
| | | |||||
| * | rustfmt again | Ulf Lilleengen | 2024-01-24 | 1 | -1/+1 |
| | | |||||
| * | feat: add basic support for nRF51 chips to embassy-nrf | Ulf Lilleengen | 2024-01-24 | 1 | -1/+1 |
| | | |||||
| * | time: split driver into a separate embassy-time-driver crate. | Dario Nieuwenhuis | 2024-01-11 | 1 | -2/+2 |
| | | |||||
| * | Add `rt` feature to HALs, cfg out interrupt handling when not set. | Dario Nieuwenhuis | 2023-06-08 | 1 | -0/+1 |
| | | |||||
| * | Make interrupt module more standard. | Dario Nieuwenhuis | 2023-06-08 | 1 | -3/+3 |
| | | | | | | | | | | | | | - Move typelevel interrupts to a special-purpose mod: `embassy_xx::interrupt::typelevel`. - Reexport the PAC interrupt enum in `embassy_xx::interrupt`. This has a few advantages: - The `embassy_xx::interrupt` module is now more "standard". - It works with `cortex-m` functions for manipulating interrupts, for example. - It works with RTIC. - the interrupt enum allows holding value that can be "any interrupt at runtime", this can't be done with typelevel irqs. - When "const-generics on enums" is stable, we can remove the typelevel interrupts without disruptive changes to `embassy_xx::interrupt`. | ||||
| * | cortex-m: remove owned interrupts. | Dario Nieuwenhuis | 2023-06-01 | 1 | -4/+3 |
| | | |||||
| * | Fix tests. | Dario Nieuwenhuis | 2023-05-29 | 1 | -1/+1 |
| | | |||||
| * | Address review feedback | ivmarkov | 2022-10-24 | 1 | -7/+11 |
| | | |||||
| * | Change time Driver contract to never fire the alarm synchronously | ivmarkov | 2022-10-24 | 1 | -8/+9 |
| | | |||||
| * | split `embassy-util` into `embassy-futures`, `embassy-sync`. | Dario Nieuwenhuis | 2022-08-22 | 1 | -2/+2 |
| | | |||||
| * | Split embassy-time from embassy-executor. | Dario Nieuwenhuis | 2022-08-18 | 1 | -2/+2 |
| | | |||||
| * | Split embassy crate into embassy-executor, embassy-util. | Dario Nieuwenhuis | 2022-07-29 | 1 | -4/+4 |
| | | |||||
| * | Run rustfmt. | Dario Nieuwenhuis | 2022-06-12 | 1 | -12/+10 |
| | | |||||
| * | Add embassy-cortex-m crate. | Dario Nieuwenhuis | 2022-06-12 | 1 | -1/+1 |
| | | | | | | | - Move Interrupt and InterruptExecutor from `embassy` to `embassy-cortex-m`. - Move Unborrow from `embassy` to `embassy-hal-common` (nothing in `embassy` requires it anymore) - Move PeripheralMutex from `embassy-hal-common` to `embassy-cortex-m`. | ||||
| * | time: better docs explaining overflow handling. | Dario Nieuwenhuis | 2022-02-23 | 1 | -18/+45 |
| | | |||||
| * | blocking_mutex: refactor to work on stable. No GATs, and can be constructed ↵ | Dario Nieuwenhuis | 2022-02-12 | 1 | -1/+2 |
| | | | | | in const. | ||||
| * | embassy: Refactor module structure to remove kitchen-sink `util`. | Dario Nieuwenhuis | 2021-09-11 | 1 | -1/+1 |
| | | |||||
| * | time: allow storing state inside the driver struct. | Dario Nieuwenhuis | 2021-08-25 | 1 | -37/+18 |
| | | |||||
| * | nrf/time: allow configuring the rtc irq prio | Dario Nieuwenhuis | 2021-08-18 | 1 | -4/+6 |
| | | |||||
| * | time_driver: use regular fn ptr -> raw ptr casts | Dario Nieuwenhuis | 2021-08-05 | 1 | -4/+1 |
| | | |||||
| * | time: replace dyn clock/alarm with a global Driver trait | Dario Nieuwenhuis | 2021-08-05 | 1 | -0/+295 |
