From c227a71d243db6d539f3c64e3b4bb1b3ab282693 Mon Sep 17 00:00:00 2001 From: Finomnis Date: Mon, 4 Dec 2023 15:53:02 +0100 Subject: Refactor race condition free timer helper (#850) * Implement half_period_counter in rtic-time * Rename compute_now to calculate_now, use it in stm32 and imxrt * Add more tests * Add some docs * Fix clippy warning, add imxrt timer to monotonics tests * Bump dependency version to make sure monotonics will build properly * Add changelog to rtic-monotonics * Add more docs * Add more docs * Finish documentation * Fix typos * Switch from atomic-polyfill to portable-atomic * Some more doc fixes * More doc fixes * Minor doc fix * Minor doc fix * Fix Atomics not existing * Fix example * Minor example improvement * Revert back to atomic-polyfill * Fix cargo.toml formatting * Remove atomic-polyfill * Attempt to fix unused macro warning * Remove atomics completely from half period counter * Minor doc fix * Doc fixes * Doc fixes * Remove obsolete comment * Fix ordering in monotonic initialization sequence --- rtic-monotonics/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'rtic-monotonics/Cargo.toml') diff --git a/rtic-monotonics/Cargo.toml b/rtic-monotonics/Cargo.toml index 4d9dc0b..a3ab9bc 100644 --- a/rtic-monotonics/Cargo.toml +++ b/rtic-monotonics/Cargo.toml @@ -27,7 +27,7 @@ features = [ rustdoc-flags = ["--cfg", "docsrs"] [dependencies] -rtic-time = { version = "1.0.0", path = "../rtic-time" } +rtic-time = { version = "1.1.0", path = "../rtic-time" } embedded-hal = { version = "1.0.0-rc.2" } embedded-hal-async = { version = "1.0.0-rc.2", optional = true } fugit = { version = "0.3.6" } -- cgit v1.2.3