aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorDario Nieuwenhuis <[email protected]>2023-10-03 22:22:16 +0200
committerDario Nieuwenhuis <[email protected]>2023-10-03 22:22:16 +0200
commit40f30fa4cd1d1273c1fe6c6520042d21e73a348e (patch)
tree174c2e09b60a07c6998647d0e2c45d6b7e93ad97 /tests
parentf197aa94193d3ed09811482c88d69da90624090a (diff)
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.
Diffstat (limited to 'tests')
-rw-r--r--tests/stm32/src/bin/dac.rs2
1 files changed, 1 insertions, 1 deletions
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) {
54 // Calibrate and normalize the measurement to get close to the dac_output_val 54 // Calibrate and normalize the measurement to get close to the dac_output_val
55 let measured_normalized = ((measured as i32 - offset as i32) / normalization_factor) as i16; 55 let measured_normalized = ((measured as i32 - offset as i32) / normalization_factor) as i16;
56 56
57 info!("value / measured: {} / {}", dac_output_val, measured_normalized); 57 //info!("value / measured: {} / {}", dac_output_val, measured_normalized);
58 58
59 // The deviations are quite enormous but that does not matter since this is only a quick test 59 // The deviations are quite enormous but that does not matter since this is only a quick test
60 assert!((dac_output_val as i16 - measured_normalized).abs() < 15); 60 assert!((dac_output_val as i16 - measured_normalized).abs() < 15);