aboutsummaryrefslogtreecommitdiff
path: root/embassy-time/src/driver_mock.rs
Commit message (Collapse)AuthorAgeFilesLines
* `embassy-time`: add missing `Debug` & `defmt::Format` derivesRalph Ursprung2025-07-281-0/+2
| | | | | | | | `defmt::Format` is *not* implemented for `MockDriver` and `InnerMockDriver` because the former contains the latter and the latter is using `Queue` from `embassy-time-queue-utils` which so far does not have a `defmt` dependency. since this is just a mock driver it shouldn't be relevant if it has no `defmt::Format` impl.
* Rename ETQD, bump dateDániel Buga2024-12-221-1/+1
|
* Merge time-driver and time-queue-driver traits, make HALs own and handle the ↵Dario Nieuwenhuis2024-12-131-77/+36
| | | | queue.
* Refactor integrated-timersDániel Buga2024-12-101-60/+25
|
* time: split queue driver too, don't reexport drivers.Dario Nieuwenhuis2024-01-111-2/+2
|
* time: split driver into a separate embassy-time-driver crate.Dario Nieuwenhuis2024-01-111-1/+1
|
* Lint/format fixesChris Price2024-01-091-1/+1
|
* Use MockDriver in queue_generic testsChris Price2024-01-091-0/+18
|
* Prevent over-allocationChris Price2024-01-091-12/+34
|
* Restructure InnerMockDriverChris Price2024-01-091-23/+38
| | | | Failing test for overallocation of alarms
* Merge TestDriver into MockDriverChris Price2024-01-091-18/+116
|
* time: fix MockDriver::now()Andres O. Vela2023-10-311-1/+1
|
* Fix testAndres O. Vela2023-10-291-1/+1
|
* Remove set_current_time APIAndres O. Vela2023-10-291-5/+0
|
* time: add MockDriver for testing purposesAndres O. Vela2023-10-291-0/+73