From 1041d3ecbb0f96410430116f2e01a3910929f229 Mon Sep 17 00:00:00 2001 From: atse Date: Mon, 16 Sep 2024 17:32:58 +0800 Subject: [PATCH] Improve the VREF calibration routine * Fix wrong calibration of VREF on startup. Caused new v2.2.2 boards to wrongly calibrate the zero-point to ~2.2 V instead of 1.5 V. * Fix bootloop on some boards. * Adjust watchdog interval accordingly. --- src/channels.rs | 17 ++++------------- src/main.rs | 2 +- 2 files changed, 5 insertions(+), 14 deletions(-) diff --git a/src/channels.rs b/src/channels.rs index a428dd1..37ba961 100644 --- a/src/channels.rs +++ b/src/channels.rs @@ -22,6 +22,7 @@ use crate::{ pins::{self, Channel0VRef, Channel1VRef}, steinhart_hart, }; +use crate::timer::sleep; pub enum PinsAdcReadTarget { VREF, @@ -269,17 +270,6 @@ impl Channels { } } - pub fn read_dac_feedback_until_stable(&mut self, channel: usize, tolerance: ElectricPotential) -> ElectricPotential { - let mut prev = self.adc_read(channel, PinsAdcReadTarget::DacVfb, 1); - loop { - let current = self.adc_read(channel, PinsAdcReadTarget::DacVfb, 1); - if (current - prev).abs() < tolerance { - return current; - } - prev = current; - } - } - /// Calibrates the DAC output to match vref of the MAX driver to reduce zero-current offset of the MAX driver output. /// /// The thermostat DAC applies a control voltage signal to the CTLI pin of MAX driver chip to control its output current. @@ -306,7 +296,7 @@ impl Channels { let mut start_value = 1; let mut best_error = ElectricPotential::new::(100.0); - for step in (0..18).rev() { + for step in (5..18).rev() { let mut prev_value = start_value; for value in (start_value..=ad5680::MAX_VALUE).step_by(1 << step) { match channel { @@ -318,8 +308,9 @@ impl Channels { } _ => unreachable!(), } + sleep(10); - let dac_feedback = self.read_dac_feedback_until_stable(channel, ElectricPotential::new::(0.001)); + let dac_feedback = self.adc_read(channel, PinsAdcReadTarget::DacVfb, 64); let error = target_voltage - dac_feedback; if error < ElectricPotential::new::(0.0) { break; diff --git a/src/main.rs b/src/main.rs index 353a161..0e79e1b 100644 --- a/src/main.rs +++ b/src/main.rs @@ -58,7 +58,7 @@ mod hw_rev; const HSE: MegaHertz = MegaHertz(8); #[cfg(not(feature = "semihosting"))] -const WATCHDOG_INTERVAL: u32 = 1_000; +const WATCHDOG_INTERVAL: u32 = 2_000; #[cfg(feature = "semihosting")] const WATCHDOG_INTERVAL: u32 = 30_000;