mirror of
https://github.com/CTCaer/hekate.git
synced 2024-11-23 02:16:41 +00:00
power: Always enable low battery protect
This commit is contained in:
parent
eb2c8a032f
commit
75c6b01696
1 changed files with 3 additions and 2 deletions
|
@ -1181,7 +1181,7 @@ static void _show_errors()
|
||||||
static void _check_low_battery()
|
static void _check_low_battery()
|
||||||
{
|
{
|
||||||
int enough_battery;
|
int enough_battery;
|
||||||
int batt_volt = 3200;
|
int batt_volt = 3500;
|
||||||
int charge_status = 0;
|
int charge_status = 0;
|
||||||
|
|
||||||
bq24193_get_property(BQ24193_ChargeStatus, &charge_status);
|
bq24193_get_property(BQ24193_ChargeStatus, &charge_status);
|
||||||
|
@ -1190,7 +1190,7 @@ static void _check_low_battery()
|
||||||
enough_battery = charge_status ? 3250 : 3000;
|
enough_battery = charge_status ? 3250 : 3000;
|
||||||
|
|
||||||
if (batt_volt > enough_battery)
|
if (batt_volt > enough_battery)
|
||||||
return;
|
goto out;
|
||||||
|
|
||||||
// Prepare battery icon resources.
|
// Prepare battery icon resources.
|
||||||
u8 *battery_res = malloc(ALIGN(SZ_BATTERY_EMPTY, 0x1000));
|
u8 *battery_res = malloc(ALIGN(SZ_BATTERY_EMPTY, 0x1000));
|
||||||
|
@ -1283,6 +1283,7 @@ static void _check_low_battery()
|
||||||
free(charging_icon);
|
free(charging_icon);
|
||||||
free(no_charging_icon);
|
free(no_charging_icon);
|
||||||
|
|
||||||
|
out:
|
||||||
// Re enable Low Battery Monitor shutdown.
|
// Re enable Low Battery Monitor shutdown.
|
||||||
max77620_low_battery_monitor_config(true);
|
max77620_low_battery_monitor_config(true);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue