summaryrefslogtreecommitdiff
path: root/firmware/target/mips/ingenic_x1000/erosqnative/power-erosqnative.c
diff options
context:
space:
mode:
authorDana Conrad <dconrad@fastmail.com>2021-11-09 18:48:22 -0600
committerAidan MacDonald <amachronic@protonmail.com>2021-11-10 07:22:57 -0500
commit9ee321cf902c9828b969c05bd96c79495bf2b96c (patch)
tree2bc568a0933ce394c926b3840456dbe3a95dba87 /firmware/target/mips/ingenic_x1000/erosqnative/power-erosqnative.c
parent58462184d16ac26c77957224bb0ed94567a2eff5 (diff)
downloadrockbox-9ee321cf902c9828b969c05bd96c79495bf2b96c.tar.gz
rockbox-9ee321cf902c9828b969c05bd96c79495bf2b96c.zip
ErosqNative: increase battery stabilization delay again
Hopefully 250 is long enough for any devices out there! Change-Id: I80e084dceb62acd8d1f51d873b18a4be9c3447d8
Diffstat (limited to 'firmware/target/mips/ingenic_x1000/erosqnative/power-erosqnative.c')
-rw-r--r--firmware/target/mips/ingenic_x1000/erosqnative/power-erosqnative.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/firmware/target/mips/ingenic_x1000/erosqnative/power-erosqnative.c b/firmware/target/mips/ingenic_x1000/erosqnative/power-erosqnative.c
index 7bb8e4582e..cea8f35a40 100644
--- a/firmware/target/mips/ingenic_x1000/erosqnative/power-erosqnative.c
+++ b/firmware/target/mips/ingenic_x1000/erosqnative/power-erosqnative.c
@@ -79,9 +79,8 @@ void power_init(void)
79 axp_set_charge_current(780); 79 axp_set_charge_current(780);
80 80
81 /* Delay to give power outputs time to stabilize. 81 /* Delay to give power outputs time to stabilize.
82 * From testing, 170 is the minimum. Make it 82 * Had one report that 190 was not long enough, let's do 250. */
83 * 190 for safety. */ 83 mdelay(250);
84 mdelay(190);
85} 84}
86 85
87#ifdef HAVE_USB_CHARGING_ENABLE 86#ifdef HAVE_USB_CHARGING_ENABLE