Clean up of debug prints, and safer CAS handling

This commit is contained in:
stevenhowes
2019-05-06 18:01:30 +01:00
parent fad496f152
commit f80968559e
6 changed files with 19 additions and 19 deletions
-6
View File
@@ -12,10 +12,6 @@ void battery_init()
{
Serial.println("ERR: Battery high");
}
else
{
Serial.println("INF: Battery ok");
}
}
void task_battery_run()
@@ -27,5 +23,3 @@ void task_battery_run()
// Nudge it along so we have an index starting at 0 for tables etc
battery_voltage_index = constrain(battery_voltage_value,7,16) - 7;
}