Merge pull request #893 from cyberman54/development

bugfix axp192 battpercent
This commit is contained in:
Verkehrsrot 2022-09-17 21:56:23 +02:00 committed by GitHub
commit 26b0a555b3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -237,7 +237,8 @@ uint8_t read_battlevel(mapFn_t mapFunction) {
#ifdef HAS_IP5306
batt_percent = IP5306_GetBatteryLevel();
#elif defined HAS_PMU
batt_percent = pmu.getBatteryPercent();
int bp = pmu.getBatteryPercent();
batt_percent = bp < 0 ? 0 : bp;
#else
const uint16_t batt_voltage = read_voltage();
if (batt_voltage <= BAT_MIN_VOLTAGE)