diff options
author | Matthias P. Braendli <matthias.braendli@mpb.li> | 2021-03-21 08:45:55 +0100 |
---|---|---|
committer | Matthias P. Braendli <matthias.braendli@mpb.li> | 2021-03-21 08:45:55 +0100 |
commit | e36cfbe37032d64d9fbb28844bc86b9cc3c0aa1b (patch) | |
tree | 33ea8641a9c20efb976e9916a62e339c5c67a1a5 /sw/main.cpp | |
parent | 4208bf1602048c8c8ffcb69746696648c9b06bf3 (diff) | |
download | glutte-batteries-e36cfbe37032d64d9fbb28844bc86b9cc3c0aa1b.tar.gz glutte-batteries-e36cfbe37032d64d9fbb28844bc86b9cc3c0aa1b.tar.bz2 glutte-batteries-e36cfbe37032d64d9fbb28844bc86b9cc3c0aa1b.zip |
Set startup cap to 1650Ah
Diffstat (limited to 'sw/main.cpp')
-rw-r--r-- | sw/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sw/main.cpp b/sw/main.cpp index 5447292..a9c5ac1 100644 --- a/sw/main.cpp +++ b/sw/main.cpp @@ -69,7 +69,7 @@ constexpr double THRESHOLD_K2_DOWN = THRESHOLD_K2; constexpr double THRESHOLD_K3_DOWN = THRESHOLD_K3; constexpr uint32_t MAX_CAPACITY = 1650uL * 3600uL; // As -constexpr uint32_t STARTUP_CAPACITY = 1000uL * 3600uL; // As +constexpr uint32_t STARTUP_CAPACITY = 1650uL * 3600uL; // As static uint32_t current_capacity; static uint32_t previous_capacity; |