aboutsummaryrefslogtreecommitdiff
path: root/embassy-time
Commit message (Collapse)AuthorAgeFilesLines
* Fixup docsCaleb Jamison2024-01-311-1/+1
|
* Rename timeout_at to with_deadlineCaleb Jamison2024-01-312-2/+2
|
* Add timeout_at convenience function and example.Caleb Jamison2024-01-312-2/+15
|
* Complete cargo.tomls more.Dario Nieuwenhuis2024-01-121-0/+1
|
* bump embassy-time 0.3, embassy-executor 0.5, embassy-net 0.4.Dario Nieuwenhuis2024-01-112-2/+8
|
* time: split queue driver too, don't reexport drivers.Dario Nieuwenhuis2024-01-119-91/+21
|
* time: docs improvements, add ci.Dario Nieuwenhuis2024-01-111-1/+1
|
* time: split driver into a separate embassy-time-driver crate.Dario Nieuwenhuis2024-01-1110-919/+169
|
* Remove nightly autodetects.Dario Nieuwenhuis2024-01-102-20/+1
|
* Merge pull request #2420 from chrisprice/mock-driverUlf Lilleengen2024-01-104-115/+184
|\ | | | | | | Extend mock time driver to support alarms
| * Ignore the doctest driver registration to prevent duplicate registrationsChris Price2024-01-092-2/+6
| |
| * Lint/format fixesChris Price2024-01-092-4/+2
| |
| * Use MockDriver in queue_generic testsChris Price2024-01-092-93/+25
| |
| * 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
| |
* | Change GPIO inherent methods back to `&self`.Dario Nieuwenhuis2024-01-101-2/+2
| | | | | | | | | | | | | | With the embedded-hal rc3 update I changed them to require `&mut self`, but in retrospect I think `&self` is better, for extra flexibility. This PR reverts the changes from the rc3 update to inherent methods.
* | Update embedded-hal to v1.0Dario Nieuwenhuis2024-01-091-2/+2
|/
* Updated driver implementation docsBarnaby Walters2023-12-221-4/+9
|
* Minor typo correctionsBarnaby Walters2023-12-222-4/+4
|
* Improved documentationBarnaby Walters2023-12-225-309/+500
| | | | | | | | | * Documented features including all tick rates * Corrected some out-of-date information * Sorted tick rate features * Removed gen_tick.py dependency on toml * Restructured README.md to better explain tick rate, more clearly prioritise time driver docs, correct header levels
* ci: use beta, add secondary nightly ci.Dario Nieuwenhuis2023-12-211-7/+0
|
* STM32: Fix race in alarm setting, which impacted scheduling.RobertTDowling2023-12-171-0/+4
| | | | | | | | | Detect potential race condition (should be rare) and return false back to caller, allowing them to handle the possibility that either the alarm was never set because it was in the past (old meaning of false), or that in fact the alarm was set and may have fired within the race window (new meaning of false). In either case, the caller needs to make sure the callback got called.
* Update embedded-hal to 1.0.0-rc.3Dario Nieuwenhuis2023-12-142-4/+4
|
* Update all references to `embasy-executor` to the latest versionJesse Braham2023-12-061-1/+1
|
* embassy-time 0.2Scott Mabin2023-12-042-2/+4
|
* Remove nightly and unstable-traits features in preparation for 1.75.Dario Nieuwenhuis2023-11-294-74/+67
|
* Update embedded-(hal,io,nal).Dario Nieuwenhuis2023-11-296-10/+37
|
* executor: release v0.3.3Dario Nieuwenhuis2023-11-151-1/+1
|
* Update heapless to v0.8, embedded-nal-async to v0.7Dario Nieuwenhuis2023-11-101-1/+1
|
* Merge pull request #2132 from embassy-rs/update-nightlyDario Nieuwenhuis2023-11-011-0/+1
|\ | | | | | | Update Rust nightly.
| * Update Rust nightly.Dario Nieuwenhuis2023-11-011-0/+1
| |
* | Merge pull request #2130 from andresovela/time-mock-driver-fixDario Nieuwenhuis2023-10-311-1/+1
|\ \ | |/ |/| | | time: fix MockDriver::now()
| * time: fix MockDriver::now()Andres O. Vela2023-10-311-1/+1
| |
* | Release embassy-executor v0.3.1Dario Nieuwenhuis2023-11-011-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-293-0/+82
|
* time: Add tick rates in multiples of 10 kHzGabriel Smith2023-10-244-0/+82
|
* time: add `links` key, release v0.1.5.Dario Nieuwenhuis2023-10-163-1/+17
|
* time: Update examples, tests, and other code to use new Timer::after_x ↵Adam Greig2023-10-151-2/+2
| | | | convenience methods
* time: Add convenience methods for Timer::after_secs/millis/micros/ticksAdam Greig2023-10-151-0/+36
|
* Release embassy-time 0.1.4Dániel Buga2023-10-121-1/+1
|
* stm32: remove atomic-polyfill.Dario Nieuwenhuis2023-10-121-1/+0
|
* Add more tick ratesDániel Buga2023-09-284-2/+249
|
* Add 80MHz tick rateDániel Buga2023-09-284-1/+10
|
* Merge pull request #1839 from Frostie314159/embassy-time-nextUlf Lilleengen2023-09-121-1/+7
|\ | | | | | | embassy-time: Introduce reset function for Ticker.
| * Fixed formating.Frostie3141592023-09-111-1/+1
| |
| * Removed unnecessary newline.Frostie3141592023-08-291-2/+1
| |
| * embassy-time: Introduced reset function for TickerFrostie3141592023-08-291-1/+8
| |