From b7690c970290c8c086c33f329e776143c0478d49 Mon Sep 17 00:00:00 2001 From: Astro Date: Wed, 7 Aug 2019 00:27:01 +0200 Subject: [PATCH] fix UART_REF_CLK started to become garbled. --- src/uart/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/uart/mod.rs b/src/uart/mod.rs index 80ea0e5f..223abbd0 100644 --- a/src/uart/mod.rs +++ b/src/uart/mod.rs @@ -10,9 +10,9 @@ mod baud_rate_gen; /// Determined through experimentation. Actually supposed to be /// 1 GHz (IO PLL) / 0x14 (slcr.UART_CLK_CTRL[DIVISOR]) = 50 MHz. #[cfg(feature = "target_zc706")] -const UART_REF_CLK: u32 = 45_000_000; +const UART_REF_CLK: u32 = 50_000_000; #[cfg(feature = "target_cora_z7_10")] -const UART_REF_CLK: u32 = 66_000_000; +const UART_REF_CLK: u32 = 72_000_000; pub struct Uart { regs: &'static mut regs::RegisterBlock,