Allow booting on damaged fuel gauge

This commit is contained in:
CTCaer 2020-11-15 14:49:54 +02:00
parent ab7a81081c
commit cabb8cd33a

View file

@ -1224,7 +1224,7 @@ static void _show_errors()
static void _check_low_battery()
{
int enough_battery;
int batt_volt = 3500;
int batt_volt = 0;
int charge_status = 0;
bq24193_get_property(BQ24193_ChargeStatus, &charge_status);
@ -1232,7 +1232,7 @@ static void _check_low_battery()
enough_battery = charge_status ? 3250 : 3000;
if (batt_volt > enough_battery)
if (batt_volt > enough_battery || !batt_volt)
goto out;
// Prepare battery icon resources.