From d230a19623b43effc0175c3c92127d55e0a83a3a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niccol=C3=B2=20Izzo?= Date: Mon, 15 Feb 2021 09:28:23 +0100 Subject: [PATCH] Adjusted battery thresholds --- openrtx/src/battery.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/openrtx/src/battery.c b/openrtx/src/battery.c index 88447b10..c7dbaf15 100644 --- a/openrtx/src/battery.c +++ b/openrtx/src/battery.c @@ -30,8 +30,8 @@ float bat_v_min = 3.61f; float bat_v_max = 4.15f; #elif defined BAT_LIPO_2S -float bat_v_min = 7.22f; -float bat_v_max = 8.30f; +float bat_v_min = 7.10f; +float bat_v_max = 8.10f; #elif defined BAT_LIPO_3S float bat_v_min = 10.83; float bat_v_max = 12.45;