config: avoid switching between sleep and active state too often

Unfortunately, the offset voltage of the opamp for charge current
measurement breaks measurement at low currents with a small shunt, so at
dusk, when currents become low, it may happen that 0 current is measured
while the battery is still being charged. This would falsely trigger the
transition to sleep state. To improve this situation, we simply keep the
charger active for a longer time.
This commit is contained in:
Thomas Kolb 2022-09-24 16:39:46 +02:00
parent 5528259517
commit 1e093978f3
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@
#define SLEEP_SOLAR_CURRENT 1
/* Delay between state change and sleep state check (in ms). */
#define SLEEP_STATE_DELAY 100
#define SLEEP_STATE_DELAY 60000
/* Delay between charging switch state change and sleep state check(in ms). */
#define SLEEP_SWITCH_DELAY 1000