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.
This commit is contained in:
Dario Nieuwenhuis
2023-10-03 22:22:16 +02:00
parent f197aa9419
commit 40f30fa4cd
3 changed files with 2 additions and 12 deletions

View File

@ -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);