浏览代码

Update variable name

Aaron Gowatch 1 年之前
父节点
当前提交
b74b90bd58
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      riscv/src/delay.rs

+ 2 - 2
riscv/src/delay.rs

@@ -28,8 +28,8 @@ impl DelayNs for McycleDelay {
     #[inline]
     #[inline]
    fn delay_ns(&mut self, ns: u32) {
    fn delay_ns(&mut self, ns: u32) {
         let t0 = mcycle::read64();
         let t0 = mcycle::read64();
-        let us_64: u64 = ns.into();
-        let clock = (us_64 * (self.ticks_second as u64)) / 1_000_000_000u64;
+        let ns_64: u64 = ns.into();
+        let clock = (ns_64 * (self.ticks_second as u64)) / 1_000_000_000u64;
         while mcycle::read64().wrapping_sub(t0) <= clock {}
         while mcycle::read64().wrapping_sub(t0) <= clock {}
    }
    }
 }
 }