瀏覽代碼

Merge #105

105: Add extra documentation for `delay` r=almindor a=Joeyh021

Took me a minute or two to figure out what value exactly to pass to `McycleDelay::new`, so figured I'd make a quick PR to add a note for anyone else that hits the same confusion as I did. Also added a doc line for the `delay` module while I was at it, as it was missing one.

Co-authored-by: Joey Harrison <joeyh021@icloud.com>
bors[bot] 2 年之前
父節點
當前提交
6073fab07a
共有 1 個文件被更改,包括 3 次插入1 次删除
  1. 3 1
      src/delay.rs

+ 3 - 1
src/delay.rs

@@ -1,3 +1,4 @@
+//! Delay devices and providers
 use crate::register::mcycle;
 use embedded_hal::blocking::delay::{DelayMs, DelayUs};
 
@@ -8,7 +9,8 @@ pub struct McycleDelay {
 }
 
 impl McycleDelay {
-    /// Constructs the delay provider
+    /// Constructs the delay provider.
+    /// `ticks_second` should be the clock speed of the core, in Hertz
     #[inline(always)]
     pub fn new(ticks_second: u32) -> Self {
         Self { ticks_second }