diff --git a/firmware/export/config-ipod3g.h b/firmware/export/config-ipod3g.h index 036ecca324..ed0a557299 100644 --- a/firmware/export/config-ipod3g.h +++ b/firmware/export/config-ipod3g.h @@ -2,9 +2,6 @@ * This config file is for the Apple iPod 3g */ -/* Temp measure until the low batt problem is figured out */ -#define NO_LOW_BATTERY_SHUTDOWN - #define TARGET_TREE /* this target is using the target tree system */ #define IPOD_ARCH 1 diff --git a/firmware/powermgmt.c b/firmware/powermgmt.c index 18764591ab..d1efa29dca 100644 --- a/firmware/powermgmt.c +++ b/firmware/powermgmt.c @@ -797,6 +797,9 @@ static void power_thread(void) int last_disk_activity = CHARGE_END_LONGD + 1; /* last hdd use x mins ago */ #endif + /* Delay reading the first battery level */ + sleep(HZ/100); + /* initialize the voltages for the exponential filter */ avgbat = battery_adc_voltage() + 15;