From: Mike Montour &lt;<a href="mailto:mail@mmontour.net">mail@mmontour.net</a>&gt;<blockquote>
Gothnet wrote:<br><br>
&gt; I still find it amazing that the FR doesn&#39;t charge when off and empty. Every<br>
&gt; phone (and every other portable device) I&#39;ve ever owned does this. It&#39;s not<br>
&gt; even a software thing - there ought to be some direct hardware way to charge<br>
&gt; the battery from totally dead without the need to even start booting.<br><br>
The FR&#39;s power-management chip (PCF50633) can be configured to do this,<br>
but it&#39;s not as simple as you might think. One source of complexity is<br>
the USB standard, which requires devices to negotiate their power<br>
consumption with the host computer. Another complication is a brownout<br>
problem on some phones which prevents them from booting the CPU unless a<br>
battery is present.<br><br>
If you program the PCF50633 as:<br>
 &nbsp;- charger enabled<br>
 &nbsp;- 100mA current limit<br>
 &nbsp;- do not wake on USB insertion (avoids the brownout issue)<br><br>
then it will have the behaviour that you want - even with a<br>
completely-dead battery, you can plug it in and it will slow-charge the<br>
battery in hardware. I think it still technically violates one of the<br>
USB standards by drawing current without talking to the host, but IMHO<br>
it&#39;s unlikely to cause any real-world problems.<br><br></blockquote>This, to me, would seem like the best solution to this issue. In fact, I&#39;m suprised this isn&#39;t the default behavior of the power management chip. Is this something we can do?<br>
<br><br>-Luke<br><br>PS - Someone from OpenMoko was kind enough to work with me on the battery issue, but I&#39;d like to prevent it in the future.<br>