From 02900d79d03dd7bd936e71810a468c00f16ce975 Mon Sep 17 00:00:00 2001 From: Sebastien Bourdeauducq Date: Fri, 29 May 2020 15:21:07 +0800 Subject: [PATCH] firmware: fix typos --- artiq/firmware/satman/jdcg.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/artiq/firmware/satman/jdcg.rs b/artiq/firmware/satman/jdcg.rs index 98d546a79..c581791a3 100644 --- a/artiq/firmware/satman/jdcg.rs +++ b/artiq/firmware/satman/jdcg.rs @@ -527,7 +527,7 @@ pub mod jesd204sync { info!(" ...done"); // We tested that the value is correct - now use it - info!("sychronizing DAC-{}", dacno); + info!("synchronizing DAC-{}", dacno); hmc7043_sysref_delay_dac(dacno, delay); ad9154_sync(dacno)?; @@ -570,7 +570,7 @@ pub mod jesd204sync { pub fn resync_dacs() -> Result<(), &'static str> { for dacno in 0..csr::JDCG.len() { - info!("resychronizing DAC-{}", dacno); + info!("resynchronizing DAC-{}", dacno); ad9154_sync(dacno as u8)?; } Ok(())