aboutsummaryrefslogtreecommitdiff
path: root/embassy-executor/src
diff options
context:
space:
mode:
authorxgroleau🐢 <[email protected]>2024-02-08 09:02:07 -0500
committerxgroleau🐢 <[email protected]>2024-02-08 09:02:07 -0500
commit262518cfe5c303034f71393367914bec221c71be (patch)
treee9bede8c05995e2f095bbf6114d5073f374a6c5b /embassy-executor/src
parent09613e90de92ba43974796efec13e38adf4c3ac8 (diff)
fix: removed trailing comma
Diffstat (limited to 'embassy-executor/src')
-rw-r--r--embassy-executor/src/raw/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/embassy-executor/src/raw/mod.rs b/embassy-executor/src/raw/mod.rs
index 3c9407d39..3d5e3ab9f 100644
--- a/embassy-executor/src/raw/mod.rs
+++ b/embassy-executor/src/raw/mod.rs
@@ -598,7 +598,7 @@ impl rtos_trace::RtosTraceOSCallbacks for Executor {
598 #[cfg(feature = "integrated-timers")] 598 #[cfg(feature = "integrated-timers")]
599 fn time() -> u64 { 599 fn time() -> u64 {
600 const GCD_1M: u64 = gcd(embassy_time_driver::TICK_HZ, 1_000_000); 600 const GCD_1M: u64 = gcd(embassy_time_driver::TICK_HZ, 1_000_000);
601 embassy_time_driver::now() * (1_000_000 / GCD_1M) / (embassy_time_driver::TICK_HZ / GCD_1M); 601 embassy_time_driver::now() * (1_000_000 / GCD_1M) / (embassy_time_driver::TICK_HZ / GCD_1M)
602 } 602 }
603 #[cfg(not(feature = "integrated-timers"))] 603 #[cfg(not(feature = "integrated-timers"))]
604 fn time() -> u64 { 604 fn time() -> u64 {