ErosqNative: increase battery stabilization delay again

Hopefully 250 is long enough for any devices out there!

Change-Id: I80e084dceb62acd8d1f51d873b18a4be9c3447d8
This commit is contained in:
Dana Conrad 2021-11-09 18:48:22 -06:00 committed by Aidan MacDonald
parent 58462184d1
commit 9ee321cf90

View file

@ -79,9 +79,8 @@ void power_init(void)
axp_set_charge_current(780); axp_set_charge_current(780);
/* Delay to give power outputs time to stabilize. /* Delay to give power outputs time to stabilize.
* From testing, 170 is the minimum. Make it * Had one report that 190 was not long enough, let's do 250. */
* 190 for safety. */ mdelay(250);
mdelay(190);
} }
#ifdef HAVE_USB_CHARGING_ENABLE #ifdef HAVE_USB_CHARGING_ENABLE