From 40f30fa4cd1d1273c1fe6c6520042d21e73a348e Mon Sep 17 00:00:00 2001 From: Dario Nieuwenhuis Date: Tue, 3 Oct 2023 22:22:16 +0200 Subject: Remove a few ultra-verbose logs. They're heavily spamming logs for HIL tests, and I don't believe they're valuable now that the thing they helped debug in their young age is now solid and mature. --- tests/stm32/src/bin/dac.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/stm32') diff --git a/tests/stm32/src/bin/dac.rs b/tests/stm32/src/bin/dac.rs index 67a7d5b59..fb7a84b1b 100644 --- a/tests/stm32/src/bin/dac.rs +++ b/tests/stm32/src/bin/dac.rs @@ -54,7 +54,7 @@ async fn main(_spawner: Spawner) { // Calibrate and normalize the measurement to get close to the dac_output_val let measured_normalized = ((measured as i32 - offset as i32) / normalization_factor) as i16; - info!("value / measured: {} / {}", dac_output_val, measured_normalized); + //info!("value / measured: {} / {}", dac_output_val, measured_normalized); // The deviations are quite enormous but that does not matter since this is only a quick test assert!((dac_output_val as i16 - measured_normalized).abs() < 15); -- cgit