<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Charger Archives - Digital Me</title>
	<atom:link href="https://ba0sh1.com/tag/charger/feed/" rel="self" type="application/rss+xml" />
	<link>https://ba0sh1.com/tag/charger/</link>
	<description>Electronics, Computers at leisure time</description>
	<lastBuildDate>Fri, 08 Nov 2013 15:28:41 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.1.1</generator>
	<item>
		<title>FT230X charger detection investigation</title>
		<link>https://ba0sh1.com/2013/11/08/ft230x-charger-detection-investigation/</link>
					<comments>https://ba0sh1.com/2013/11/08/ft230x-charger-detection-investigation/#comments</comments>
		
		<dc:creator><![CDATA[Baoshi]]></dc:creator>
		<pubDate>Fri, 08 Nov 2013 15:28:41 +0000</pubDate>
				<category><![CDATA[Diary]]></category>
		<category><![CDATA[Project]]></category>
		<category><![CDATA[Charger]]></category>
		<category><![CDATA[FT230X]]></category>
		<category><![CDATA[FT230XS]]></category>
		<category><![CDATA[USB Power]]></category>
		<guid isPermaLink="false">https://www.ba0sh1.com/?p=786</guid>

					<description><![CDATA[<p>I bought some FT230X (FT230XS) USB-USART bridge chip recently for a new design.  FT230X is not only cheaper than the traditional FT232RL, but also offers a new fancy &#8220;USB charger detection&#8221; function....</p>
<p>The post <a rel="nofollow" href="https://ba0sh1.com/2013/11/08/ft230x-charger-detection-investigation/">FT230X charger detection investigation</a> appeared first on <a rel="nofollow" href="https://ba0sh1.com">Digital Me</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>I bought some FT230X (FT230XS) USB-USART bridge chip recently for a new design.  FT230X is not only cheaper than the traditional FT232RL, but also offers a new fancy &#8220;USB charger detection&#8221; function. This interests me because I&#8217;m quickly running out of desk space and power socket. I wish the new device to be solely powered by USB and/or battery.</p>
<p><span id="more-786"></span>Designing a proper USB powered device is no simple task, this is because:</p>
<ol>
<li>If the device needs more the 100mA current, it is only allowed to draw that amount after requesting from host during USB enumeration. Some USB hosts, for example the down stream port on a bus-powered USB hub, is only able to provide maximum 100mA. So the device must be intelligent enough to differentiate the host types.</li>
<li>USB sleep mode current limitation must be considered as well.</li>
<li>I also wish the device to operate autonomously without a PC. That means it must accept power from &#8220;dummy&#8221; USB hosts such as a USB charger.</li>
</ol>
<p>Clearly point (3) conflicts with points (1) and (2) because USB charger cannot be enumerated and does not have sleep mode. And this is why I&#8217;m interested in FT230XS&#8217;s &#8220;USB charger detection&#8221; function.</p>
<p>A thorough test is still needed. According to the datasheet, FT230XS supports detection of battery charger which conforms to the USB <a title="USB Battery Charging Specification" href="http://www.usb.org/developers/devclass_docs/BCv1.2_011912.zip" target="_blank" rel="noopener">BC1.2</a> specification. AFAIK many USB chargers, notably those made by Apple, are not BC1.2 compatible. Whether FT230XS can detect those chargers is not specified in the datasheet.</p>
<p>A quick background about USB power supply and USB charging: the original USB specification limits the USB downstream current to 500mA (after enumeration).  However 500mA is too low to charge battery powered devices such as a smartphone. <a title="USB Battery Charging Specification" href="http://www.usb.org/developers/devclass_docs/BCv1.2_011912.zip" target="_blank" rel="noopener">BC1.2</a> was then specified, which introduced &#8220;Charging Downstream Port (CDP)&#8221; and &#8220;Decicated Charging Port (DCP)&#8221;. A DCP internally shorts &#8220;D+&#8221; and &#8220;D-&#8221; together. When DCP is detected, the device may draw as much as 1.8A from the port. Identification for CDP is much complicated and outside the scope of my interest  (because I have no CDP compliant host), more readings can be found <a title="The Basics of USB Battery Charging: A Survival Guide" href="http://www.maximintegrated.com/app-notes/index.mvp/id/4803" target="_blank" rel="noopener">here</a>.</p>
<p>While looks simple on paper, the actual USB charging situation is much more complicated. Reason being that USB charging specification came too late and vendors have been inventing their own charging protocols. Notably:</p>
<ol>
<li>Apple has been inventing USB charging protocol since iPod days (check out the hardwork <a title="iCharging" href="http://learn.adafruit.com/minty-boost/icharging" target="_blank" rel="noopener">here</a>). The charger&#8217;s capability is identified by the voltages on D+ and D- lines, as:
<ul>
<li>(D+,D-) = (2.0V, 2.0V) -&gt; 500mA (iPod charger)</li>
<li>(D+,D-) = (2.8V, 2.0V) -&gt; 1A (iPhone charger)</li>
<li>(D+,D-) = (2.0V, 2.8V) -&gt; 2A (iPad charger)</li>
</ul>
</li>
<li>Chinese standard <a title="Chinese USB Charging Standards" href="http://www.digikey.com/Web%20Export/Supplier%20Content/PI_596/PDF/PowerInt_ChinaUSB.pdf?redirected=1" target="_blank" rel="noopener">YD/T 1591-2006</a>. Which is basically the same as BC 1.2, shorting D+ and D-.</li>
<li>European smartphone charging standards says a 200Ω resister must be connected in-between D+ and D- to identify a charger.</li>
</ol>
<p>FT230XS is very easy to use. I made a simple testing board using a SSOP-16 breakout adaptor. The contact was was plucked from a USB header and glued to the breakout adaptor. Chip under test is FT230XS, Rev D, date code 1243.</p>
<figure id="attachment_795" aria-describedby="caption-attachment-795" style="width: 360px" class="wp-caption aligncenter"><a class="thumbnail" href="http://blog.ba0sh1.com/wordpress/wp-content/uploads/2013/10/f0aba-ft230xs-breakout.png" target="_blank" rel="noopener"><img decoding="async" class=" wp-image-795 " alt="FT230XS breakout board" src="http://blog.ba0sh1.com/wordpress/wp-content/uploads/2013/10/f0aba-ft230xs-breakout.png" width="360" height="359" srcset="https://ba0sh1.com/wp-content/uploads/2013/10/f0aba-ft230xs-breakout.png 600w, https://ba0sh1.com/wp-content/uploads/2013/10/f0aba-ft230xs-breakout-300x300.png 300w, https://ba0sh1.com/wp-content/uploads/2013/10/f0aba-ft230xs-breakout-150x150.png 150w" sizes="(max-width: 360px) 100vw, 360px" /></a><figcaption id="caption-attachment-795" class="wp-caption-text">FT230XS breakout board</figcaption></figure>
<p>I further mount the adaptor onto a breadboard and connect 3 LEDs onto the CBUS pins. The configuration of the colors are:</p>
<ul>
<li>Yellow &#8211; BCD#, should light up when charger is detected.</li>
<li>Red &#8211; PWEN#, indicates required power negotiated.</li>
<li>Green &#8211; SLEEP#, should light up when USB enters sleep mode (host suspend).</li>
</ul>
<figure id="attachment_796" aria-describedby="caption-attachment-796" style="width: 360px" class="wp-caption aligncenter"><a class="thumbnail" href="http://blog.ba0sh1.com/wordpress/wp-content/uploads/2013/10/915af-ft230xs-breadboard.png" target="_blank" rel="noopener"><img decoding="async" loading="lazy" class=" wp-image-796 " alt="FT230XS on breadboard" src="http://blog.ba0sh1.com/wordpress/wp-content/uploads/2013/10/915af-ft230xs-breadboard.png" width="360" height="270" srcset="https://ba0sh1.com/wp-content/uploads/2013/10/915af-ft230xs-breadboard.png 600w, https://ba0sh1.com/wp-content/uploads/2013/10/915af-ft230xs-breadboard-300x225.png 300w" sizes="(max-width: 360px) 100vw, 360px" /></a><figcaption id="caption-attachment-796" class="wp-caption-text">FT230XS on breadboard</figcaption></figure>
<p>The chip is programmed using official FT_Prog utility. Power required is set to 500mA. I would skip all the testing procedures and note down the results here:</p>
<p><strong>Testing with PC USB port</strong></p>
<p>Scenario 1. Connect to a PC USB port when PC is running: Green LED (SLEEP#) lit up then all LEDs turn off shortly. Windows start to find driver. Red LED (PWEN#) lit up when Windows starts to download driver from Windows Update. Red LED stays on after driver installed.</p>
<p>Scenario 2. While FT230XS still connected, put Windows into sleep mode: Red LED (PWEN#) off and Green LED (SLEEP#) lit up, indicating sleep mode.</p>
<p>Scenario 3. Resume windows: Green LED off, Red LED lit up, indicating power enable.</p>
<p>Scenario 4. Unplug FT230XS, put Windows into sleep mode and plug the FT230XS: Red LED off, Green LED lit up, indicating sleep mode.</p>
<p>Scenario 5. While FT230XS is still connected, shutdown PC: Green LED still on, indicating sleep mode.</p>
<p>Scenario 6. Unplug FT230xS, shutdown PC and plug FT230XS back: Green LED lit up, indicating sleep mode.</p>
<p><strong>Testing with PC USB through a self-powered USB hub:</strong></p>
<p>Same as previous results.</p>
<p><strong>Testing with PC USB through a bus-powered USB hub:</strong></p>
<p>Unfortunately all my USB hubs report themselves as self-powered even if they are not. I had to modify a hub into bus-powered. Bus-powered hub can be identified in Windows Device Manager as:</p>
<figure id="attachment_799" aria-describedby="caption-attachment-799" style="width: 254px" class="wp-caption aligncenter"><a class="thumbnail" href="http://blog.ba0sh1.com/wordpress/wp-content/uploads/2013/10/9452d-usb-bus-powered-hub.png" target="_blank" rel="noopener"><img decoding="async" loading="lazy" class=" wp-image-799 " alt="USB bus-powered hub" src="http://blog.ba0sh1.com/wordpress/wp-content/uploads/2013/10/9452d-usb-bus-powered-hub.png" width="254" height="281" srcset="https://ba0sh1.com/wp-content/uploads/2013/10/9452d-usb-bus-powered-hub.png 423w, https://ba0sh1.com/wp-content/uploads/2013/10/9452d-usb-bus-powered-hub-271x300.png 271w" sizes="(max-width: 254px) 100vw, 254px" /></a><figcaption id="caption-attachment-799" class="wp-caption-text">USB bus-powered hub</figcaption></figure>
<p>Scenario 1. Connect to bus-powered hub: Green LED (SLEEP#) lit up then all LEDs turn off shortly, Windows show the following message. All the LEDs stays off. It shows that Windows failed to configure the device because the USB port cannot supply enough current (500mA).</p>
<figure id="attachment_800" aria-describedby="caption-attachment-800" style="width: 544px" class="wp-caption aligncenter"><a class="thumbnail" href="http://blog.ba0sh1.com/wordpress/wp-content/uploads/2013/10/e06cc-usb-power-exceed.png" target="_blank" rel="noopener"><img decoding="async" loading="lazy" class="size-full wp-image-800 " alt="USB power exceeded" src="http://blog.ba0sh1.com/wordpress/wp-content/uploads/2013/10/e06cc-usb-power-exceed.png" width="544" height="214" srcset="https://ba0sh1.com/wp-content/uploads/2013/10/e06cc-usb-power-exceed.png 544w, https://ba0sh1.com/wp-content/uploads/2013/10/e06cc-usb-power-exceed-300x118.png 300w" sizes="(max-width: 544px) 100vw, 544px" /></a><figcaption id="caption-attachment-800" class="wp-caption-text">USB power exceeded</figcaption></figure>
<p>Scenario 2. While FT230XS still connected, put Windows into sleep mode: Green LED (SLEEP#) lit up, indicating sleep mode.</p>
<p>Scenario 3. Resume windows: All LEDs turn off.</p>
<p>Scenario 4. Unplug FT230XS, put Windows into sleep mode and plug the FT230XS: Green LED lit up, indicating sleep mode.</p>
<p>Scenario 5. While FT230XS still connected, shutdown PC: Green LED stays up, indicating sleep mode.</p>
<p>Scenario 6. Unplug FT230xS, shutdown PC and plug FT230XS back: Green LED lit up, indicating sleep mode.</p>
<p><strong>Test with USB chargers</strong></p>
<p>I tested 4 different chargers, as shown in the picture</p>
<figure id="attachment_817" aria-describedby="caption-attachment-817" style="width: 378px" class="wp-caption aligncenter"><a class="thumbnail" href="http://blog.ba0sh1.com/wordpress/wp-content/uploads/2013/11/13687-usb-chargers.jpg" target="_blank" rel="noopener"><img decoding="async" loading="lazy" class=" wp-image-817  " alt="USB chargers under test" src="http://blog.ba0sh1.com/wordpress/wp-content/uploads/2013/11/13687-usb-chargers.jpg" width="378" height="251" srcset="https://ba0sh1.com/wp-content/uploads/2013/11/13687-usb-chargers.jpg 630w, https://ba0sh1.com/wp-content/uploads/2013/11/13687-usb-chargers-300x199.jpg 300w" sizes="(max-width: 378px) 100vw, 378px" /></a><figcaption id="caption-attachment-817" class="wp-caption-text">USB chargers under test</figcaption></figure>
<p>Scenario A, plug FT230XS into a USB power adaptor from TPLink router (D+/D- shorted). Yellow LED (BCD#) lit up, indicating charger detected.</p>
<p>Scenario B, plug FT230XS into a USB charger for amazon Kindle (D+/D- shorted). Yellow LED (BCD#) lit up, indicating charger detected.</p>
<p>Scenario C, plug FT230XS into Apple iPhone charger (5V/1A), Yellow LED (BCD#) lit up, indicating charger detected.</p>
<p>Scenario D, plug FT230XS into Apple iPad charger (5V/2A), <span style="color:#ff0000;">Green LED (SLEEP#) lit up, indicating sleep.</span></p>
<p>Scenario E, since I do not have a Apple iPod charger (my iPod charger is Firewire charger), I connect FT230XS to 5V supply and supply D+/D- with 2V from voltage divider. <span style="color:#ff0000;">Green LED (SLEEP#) lit up, indicating sleep.</span></p>
<p>Scenario F, Connect FT230XS to 5V power supply (floating D+, D-),<span style="color:#ff0000;"> Green LED (SLEEP#) lit up, indicating sleep.</span></p>
<p>Summarize the findings, here is the result matrix: (On means asserted)</p>
<table border="1" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td valign="top" width="310"></td>
<td valign="top" width="102">
<p align="center">PWEN#</p>
</td>
<td valign="top" width="102">
<p align="center">SLEEP#</p>
</td>
<td valign="top" width="102">
<p align="center">BCD#</p>
</td>
</tr>
<tr>
<td valign="top" width="310">USB Host/Self-powered Hub (Power on)</td>
<td width="102">
<p align="center">On</p>
</td>
<td width="102">
<p align="center">Off</p>
</td>
<td width="102">
<p align="center">Off</p>
</td>
</tr>
<tr>
<td valign="top" width="310">USB Host/Self-powered Hub (Power off)</td>
<td width="102">
<p align="center">Off</p>
</td>
<td width="102">
<p align="center">On</p>
</td>
<td width="102">
<p align="center">Off</p>
</td>
</tr>
<tr>
<td valign="top" width="310">USB Host/Self-powered Hub (Sleep)</td>
<td width="102">
<p align="center">Off</p>
</td>
<td width="102">
<p align="center">On</p>
</td>
<td width="102">
<p align="center">Off</p>
</td>
</tr>
<tr>
<td valign="top" width="310">Bus-powered Hub (Power on)</td>
<td width="102">
<p align="center">Off</p>
</td>
<td width="102">
<p align="center">Off</p>
</td>
<td width="102">
<p align="center">Off</p>
</td>
</tr>
<tr>
<td valign="top" width="310">Bus-powered Hub (Power off)</td>
<td width="102">
<p align="center">Off</p>
</td>
<td width="102">
<p align="center">On</p>
</td>
<td width="102">
<p align="center">Off</p>
</td>
</tr>
<tr>
<td valign="top" width="310">Bus-powered Hub (Sleep)</td>
<td width="102">
<p align="center">Off</p>
</td>
<td width="102">
<p align="center">On</p>
</td>
<td width="102">
<p align="center">Off</p>
</td>
</tr>
<tr>
<td valign="top" width="310">USB Charger (Chinese/BC1.2)</td>
<td width="102">
<p align="center">Off</p>
</td>
<td width="102">
<p align="center">Off</p>
</td>
<td width="102">
<p align="center">On</p>
</td>
</tr>
<tr>
<td valign="top" width="310">Apple iPhone charger (1A. D+/D- = 2.8, 2.0V)</td>
<td width="102">
<p align="center">Off</p>
</td>
<td width="102">
<p align="center">Off</p>
</td>
<td width="102">
<p align="center">On</p>
</td>
</tr>
<tr>
<td valign="top" width="310">Apple iPad charger (2A. D+/D- = 2.0, 2.8V)</td>
<td width="102">
<p align="center">Off</p>
</td>
<td width="102">
<p align="center">On</p>
</td>
<td width="102">
<p align="center">Off</p>
</td>
</tr>
<tr>
<td valign="top" width="310">Apple iPod charger (500mA, D+/D0 = 2.0, 2.0V)</td>
<td width="102">
<p align="center">Off</p>
</td>
<td width="102">
<p align="center">On</p>
</td>
<td width="102">
<p align="center">Off</p>
</td>
</tr>
<tr>
<td valign="top" width="310">Dummy USB (D+/D- floating)</td>
<td width="102">
<p align="center">Off</p>
</td>
<td width="102">
<p align="center">On</p>
</td>
<td width="102">
<p align="center">Off</p>
</td>
</tr>
</tbody>
</table>
<div></div>
<div>I could use (PWEN or BCD) to turn on the device power, and use (SLEEP) to put device into low power mode. However, such logic is not working for iPad charger, iPod charger or dummy USB port, because FT230XS is not able to differentiate them from a bus-power USB hub.</div>
<div></div>
<div>So the verdict? I need more intelligence from FT230X  for proper USB power management <img src="https://s.w.org/images/core/emoji/14.0.0/72x72/1f641.png" alt="🙁" class="wp-smiley" style="height: 1em; max-height: 1em;" /></div>
<div></div>
<div></div>
<p></p>
<p>The post <a rel="nofollow" href="https://ba0sh1.com/2013/11/08/ft230x-charger-detection-investigation/">FT230X charger detection investigation</a> appeared first on <a rel="nofollow" href="https://ba0sh1.com">Digital Me</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://ba0sh1.com/2013/11/08/ft230x-charger-detection-investigation/feed/</wfw:commentRss>
			<slash:comments>11</slash:comments>
		
		
			</item>
		<item>
		<title>Mobile charger mini review</title>
		<link>https://ba0sh1.com/2012/10/20/mobile-charger-review/</link>
					<comments>https://ba0sh1.com/2012/10/20/mobile-charger-review/#comments</comments>
		
		<dc:creator><![CDATA[Baoshi]]></dc:creator>
		<pubDate>Sat, 20 Oct 2012 13:16:56 +0000</pubDate>
				<category><![CDATA[Review]]></category>
		<category><![CDATA[Battery]]></category>
		<category><![CDATA[Charger]]></category>
		<category><![CDATA[PCB]]></category>
		<guid isPermaLink="false">https://www.ba0sh1.com/?p=407</guid>

					<description><![CDATA[<p>Mobile charger has become one of the most popular accessories/consumables for smart-phone (thanks to Apple&#8217;s non-removable battery design). Being a heavy mobile internet user, I have accumulated several mobile chargers, ranging from...</p>
<p>The post <a rel="nofollow" href="https://ba0sh1.com/2012/10/20/mobile-charger-review/">Mobile charger mini review</a> appeared first on <a rel="nofollow" href="https://ba0sh1.com">Digital Me</a>.</p>
]]></description>
										<content:encoded><![CDATA[<p>Mobile charger has become one of the most popular accessories/consumables for smart-phone (thanks to Apple&#8217;s non-removable battery design). Being a heavy mobile internet user, I have accumulated several mobile chargers, ranging from top-of-the-line Energizer &#8220;Energi To Go&#8221;series, to homebrew single 18650 lithium battery adaptor. All of them have proved to charge mobile phone well. But are they good enough to power testing circuits for lab use? I cannot have good confidence until I tear them apart and measure their performances.<span id="more-407"></span>Before going further, let&#8217;s imaging what are the essential circuitries for a mobile charger.</p>
<ul>
<li>First thing of course is the battery. For modern chargers it is usually a 3.6/3.7V lithium-ion or lithium-polymer type. The capacity of the battery directly determines the price of the charger. Overrating capacity is not unusual. As my personal guideline, for a charger weights about the same of an iPhone (120g), the capacity should be around 5000-6000mAH. So if you encounter a charger weights less but rated as much as 10,000mAH, avoid it at all costs. It is not because of the capacity, but the manufacture&#8217;s integrity and the confidence over other parts of the charger.</li>
<li>Since the battery is 3.6/3.7V and USB specification is 5V, there should be a DC-DC boost converter inside the charger. DC-DC circuit introduces noise and ripple. Although noise and ripple are not of concern for charging mobile phones, they are very important for lab use.</li>
<li>The battery needs to be charged. Lithium battery usually charges at 4.2V and it must be a CC/CV charging process. So there will be a charging circuit.</li>
<li>Using lithium batteries also implies the need of protection circuit to prevent over charging or discharging.</li>
</ul>
<p>Too much for the theory. Here comes the victim of today&#8217;s tear down.</p>
<figure id="attachment_409" aria-describedby="caption-attachment-409" style="width: 599px" class="wp-caption aligncenter"><img decoding="async" loading="lazy" class="thumbnail size-full wp-image-409" title="Chargers under test" alt="Chargers under test" src="http://blog.ba0sh1.com/wordpress/wp-content/uploads/2012/10/9c3a6-chargers-under-test.jpg" width="599" height="337" /><figcaption id="caption-attachment-409" class="wp-caption-text">Chargers under test</figcaption></figure>
<p>The most useful tool to test battery is a constant current dummy load. Unfortunately I do not have one. So I&#8217;ll use a high power LED light as load. The light draws 414mA from USB port. It should be close to the charging current of mobile phones.</p>
<figure id="attachment_415" aria-describedby="caption-attachment-415" style="width: 600px" class="wp-caption aligncenter"><img decoding="async" loading="lazy" class="thumbnail size-full wp-image-415" title="LED light" alt="LED light" src="http://blog.ba0sh1.com/wordpress/wp-content/uploads/2012/10/ef974-led-light.jpg" width="600" height="338" srcset="https://ba0sh1.com/wp-content/uploads/2012/10/ef974-led-light.jpg 600w, https://ba0sh1.com/wp-content/uploads/2012/10/ef974-led-light-300x169.jpg 300w" sizes="(max-width: 600px) 100vw, 600px" /><figcaption id="caption-attachment-415" class="wp-caption-text">LED light</figcaption></figure>
<p>Charger &#8220;A&#8221;) This is one of the most popular chargers in the market today. The label says &#8220;Power Bank for iPad/iPhone&#8221;, with out brand or manufacture whatsoever. Here in Singapore it costs S$20 online. But in China you can get it as low as RMB29. The weight is 120g and capacity rating is 5000mAH, which does not seems to be overrated.</p>
<p>The first test is to measure its output ripple voltage under load. Just a side note: to measure ripple voltage (usually at several mV to several hundred mV), the ground link of your oscilloscope test lead will function like an antenna that picks up higher EMI noise than the actual ripple. So you must take out the ground alligator clip and use the spring header instead, as the photo below:</p>
<figure id="attachment_416" aria-describedby="caption-attachment-416" style="width: 600px" class="wp-caption aligncenter"><img decoding="async" loading="lazy" class="thumbnail size-full wp-image-416" title="Test lead" alt="Test lead" src="http://blog.ba0sh1.com/wordpress/wp-content/uploads/2012/10/f8757-test-lead.jpg" width="600" height="337" srcset="https://ba0sh1.com/wp-content/uploads/2012/10/f8757-test-lead.jpg 600w, https://ba0sh1.com/wp-content/uploads/2012/10/f8757-test-lead-300x169.jpg 300w" sizes="(max-width: 600px) 100vw, 600px" /><figcaption id="caption-attachment-416" class="wp-caption-text">Test lead</figcaption></figure>
<p>As a low cost charger I did not expect too much quality from the charger. The result confirms it: the ripple is as high as 768mV peak-to-peak. Base ripple frequency is about 100kHz but mixed with higher frequency spikes. I don&#8217;t think it is anything good for lab use. Even use this to charge mobile phone makes me feel uncomfortable.</p>
<figure id="attachment_417" aria-describedby="caption-attachment-417" style="width: 320px" class="wp-caption aligncenter"><img decoding="async" loading="lazy" class="thumbnail size-full wp-image-417" title="Charger A ripple" alt="Charger A ripple" src="http://blog.ba0sh1.com/wordpress/wp-content/uploads/2012/10/3435e-charger-a-ripple.jpg" width="320" height="234" srcset="https://ba0sh1.com/wp-content/uploads/2012/10/3435e-charger-a-ripple.jpg 320w, https://ba0sh1.com/wp-content/uploads/2012/10/3435e-charger-a-ripple-300x219.jpg 300w" sizes="(max-width: 320px) 100vw, 320px" /><figcaption id="caption-attachment-417" class="wp-caption-text">Charger A ripple</figcaption></figure>
<p>So what&#8217;s inside this charger? Let&#8217;s have a look inside:</p>
<figure id="attachment_420" aria-describedby="caption-attachment-420" style="width: 600px" class="wp-caption aligncenter"><img decoding="async" loading="lazy" class="thumbnail size-full wp-image-420" title="Charger A inside" alt="Charger A inside" src="http://blog.ba0sh1.com/wordpress/wp-content/uploads/2012/10/fb450-charger-a-inside.jpg" width="600" height="450" srcset="https://ba0sh1.com/wp-content/uploads/2012/10/fb450-charger-a-inside.jpg 600w, https://ba0sh1.com/wp-content/uploads/2012/10/fb450-charger-a-inside-300x225.jpg 300w" sizes="(max-width: 600px) 100vw, 600px" /><figcaption id="caption-attachment-420" class="wp-caption-text">Charger A inside</figcaption></figure>
<p>As I&#8217;ve expected, it contains a lipo battery without marking <img src="https://s.w.org/images/core/emoji/14.0.0/72x72/1f641.png" alt="🙁" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
<figure id="attachment_421" aria-describedby="caption-attachment-421" style="width: 600px" class="wp-caption aligncenter"><img decoding="async" loading="lazy" class="thumbnail size-full wp-image-421" title="Charger A boost converter" alt="Charger A boost converter" src="http://blog.ba0sh1.com/wordpress/wp-content/uploads/2012/10/d5407-charger-a-boost-converter.jpg" width="600" height="450" srcset="https://ba0sh1.com/wp-content/uploads/2012/10/d5407-charger-a-boost-converter.jpg 600w, https://ba0sh1.com/wp-content/uploads/2012/10/d5407-charger-a-boost-converter-300x225.jpg 300w" sizes="(max-width: 600px) 100vw, 600px" /><figcaption id="caption-attachment-421" class="wp-caption-text">Charger A boost converter</figcaption></figure>
<p>Here is the DC-DC boost converter. The chip is marked &#8220;PCN TSA2Q&#8221;, corresponding part number PAM2421, by &#8220;Power Analog Microelectronics Inc&#8221;, datasheet <a href="http://www.diodes.com/datasheets/PAM242x.pdf" target="_blank" rel="noopener">here</a>. The rated efficiency is about 87% for 3.6-5V boost at 400mA load. Interestingly my measurement didn&#8217;t show the rated 520kHz switching frequency. The datasheet does not mention anything about ripple, seems the manufacture is purposely trying to avoid the topic.</p>
<figure id="attachment_422" aria-describedby="caption-attachment-422" style="width: 600px" class="wp-caption aligncenter"><img decoding="async" loading="lazy" class="thumbnail size-full wp-image-422" title="Charger A charging circuit" alt="Charger A charging circuit" src="http://blog.ba0sh1.com/wordpress/wp-content/uploads/2012/10/1f022-charger-a-charging-circuit.jpg" width="600" height="450" srcset="https://ba0sh1.com/wp-content/uploads/2012/10/1f022-charger-a-charging-circuit.jpg 600w, https://ba0sh1.com/wp-content/uploads/2012/10/1f022-charger-a-charging-circuit-300x225.jpg 300w" sizes="(max-width: 600px) 100vw, 600px" /><figcaption id="caption-attachment-422" class="wp-caption-text">Charger A charging circuit</figcaption></figure>
<p>The charging circuit is based on &#8220;AP5056&#8221; chip. Googling 5056 resolves several Chinese webpage, like <a href="http://www.chipown.com.cn/pro/AP5056.pdf" target="_blank" rel="noopener">this</a> and <a href="http://www.go-gddq.com/down/2011-10/11100322596879.pdf" target="_blank" rel="noopener">this</a>. It seems the chip does implement CC/CV charging mode and automatic charging termination.</p>
<figure id="attachment_423" aria-describedby="caption-attachment-423" style="width: 600px" class="wp-caption aligncenter"><img decoding="async" loading="lazy" class="thumbnail size-full wp-image-423" title="Charger A protection circuit" alt="Charger A protection circuit" src="http://blog.ba0sh1.com/wordpress/wp-content/uploads/2012/10/c7688-charger-a-protection-circuit.jpg" width="600" height="450" srcset="https://ba0sh1.com/wp-content/uploads/2012/10/c7688-charger-a-protection-circuit.jpg 600w, https://ba0sh1.com/wp-content/uploads/2012/10/c7688-charger-a-protection-circuit-300x225.jpg 300w" sizes="(max-width: 600px) 100vw, 600px" /><figcaption id="caption-attachment-423" class="wp-caption-text">Charger A protection circuit</figcaption></figure>
<p>Chip &#8220;DW01&#8221; and the two MOSFET 8205A are the lithium battery protection circuit. DW01 datasheet can be found <a href="http://www.ic-fortune.com/upload/Download/DW01-G-DS-10_EN.pdf" target="_blank" rel="noopener">here</a>.</p>
<figure id="attachment_424" aria-describedby="caption-attachment-424" style="width: 600px" class="wp-caption aligncenter"><img decoding="async" loading="lazy" class="thumbnail size-full wp-image-424" title="Charger A MCU" alt="Charger A MCU" src="http://blog.ba0sh1.com/wordpress/wp-content/uploads/2012/10/c44ec-charger-a-mcu.jpg" width="600" height="450" srcset="https://ba0sh1.com/wp-content/uploads/2012/10/c44ec-charger-a-mcu.jpg 600w, https://ba0sh1.com/wp-content/uploads/2012/10/c44ec-charger-a-mcu-300x225.jpg 300w" sizes="(max-width: 600px) 100vw, 600px" /><figcaption id="caption-attachment-424" class="wp-caption-text">Charger A MCU</figcaption></figure>
<p>There is a 14-pin chip in the upper side of the PCB. Interestingly it is not a chip with markings being scratched off (like many other Chinese products). This chip is manufactured without marking! My guess is that this is a micro controller in charge of blinking LED lights, as the charger actually has a 3-segment LED to indicate battery level. But why is it without marking? To prevent being copied?</p>
<p>Verdict: This is a typical Chinese <a href="http://en.wikipedia.org/wiki/Shanzhai" target="_blank" rel="noopener">ShanZhai</a>(山寨) product. I&#8217;m not sure if it is copied from somewhere else or the engineer roll out their own. The parts used in the charger is sub-prime, hence it is low cost. With huge ripple voltage I&#8217;ll not take it for lab use. It is potentially good to light some LED lights but use it to charge expensive mobile device is the last thing I&#8217;ll do.</p>
<p>&nbsp;</p>
<p>Charger &#8220;B&#8221;) Charger &#8220;B&#8221; is a typical iPhone charging case. I got it from a friend who &#8220;upgraded&#8221; his iPhone to a Samsung Glaxy Note. It weights 70 gram and rated 1900mAH, seems realistic for this type of charger. The battery is pretty weak when I received it. My intention is to take out the PCB and see if it can be used for other purposes. So I measure ripple voltage:</p>
<figure id="attachment_427" aria-describedby="caption-attachment-427" style="width: 320px" class="wp-caption aligncenter"><img decoding="async" loading="lazy" class="thumbnail size-full wp-image-427" title="Charger B ripple" alt="Charger B ripple" src="http://blog.ba0sh1.com/wordpress/wp-content/uploads/2012/10/24775-charger-b-ripple.jpg" width="320" height="234" srcset="https://ba0sh1.com/wp-content/uploads/2012/10/24775-charger-b-ripple.jpg 320w, https://ba0sh1.com/wp-content/uploads/2012/10/24775-charger-b-ripple-300x219.jpg 300w" sizes="(max-width: 320px) 100vw, 320px" /><figcaption id="caption-attachment-427" class="wp-caption-text">Charger B ripple</figcaption></figure>
<p>Ripple is 212mV peak-to-peak. Compare with Charger &#8220;A&#8221; this waveform is much clearer. DC-DC switching frequency is about 416kHz.</p>
<p>Taking the charger apart and check the battery, again we found an unlabeled lipo cell <img src="https://s.w.org/images/core/emoji/14.0.0/72x72/1f641.png" alt="🙁" class="wp-smiley" style="height: 1em; max-height: 1em;" /></p>
<figure id="attachment_428" aria-describedby="caption-attachment-428" style="width: 600px" class="wp-caption aligncenter"><img decoding="async" loading="lazy" class="thumbnail size-full wp-image-428" title="Charger B inside" alt="Charger B inside" src="http://blog.ba0sh1.com/wordpress/wp-content/uploads/2012/10/884d4-charger-b-inside.jpg" width="600" height="450" srcset="https://ba0sh1.com/wp-content/uploads/2012/10/884d4-charger-b-inside.jpg 600w, https://ba0sh1.com/wp-content/uploads/2012/10/884d4-charger-b-inside-300x225.jpg 300w" sizes="(max-width: 600px) 100vw, 600px" /><figcaption id="caption-attachment-428" class="wp-caption-text">Charger B inside</figcaption></figure>
<p>Surrounding the bulky inductor should be DC-DC converter circuit.</p>
<figure id="attachment_429" aria-describedby="caption-attachment-429" style="width: 600px" class="wp-caption aligncenter"><img decoding="async" loading="lazy" class="thumbnail size-full wp-image-429" title="Charger B boost converter" alt="Charger B boost converter" src="http://blog.ba0sh1.com/wordpress/wp-content/uploads/2012/10/2daa5-charger-b-boost-converter.jpg" width="600" height="450" srcset="https://ba0sh1.com/wp-content/uploads/2012/10/2daa5-charger-b-boost-converter.jpg 600w, https://ba0sh1.com/wp-content/uploads/2012/10/2daa5-charger-b-boost-converter-300x225.jpg 300w" sizes="(max-width: 600px) 100vw, 600px" /><figcaption id="caption-attachment-429" class="wp-caption-text">Charger B boost converter</figcaption></figure>
<p>The converter chip is marked &#8220;AA2C&#8221;. But Google cannot find its actual part number. &#8220;AA2C&#8221; could just be the manufacture&#8217;s internal code. Anyway giving its ripple voltage I do not believe it is anything worth investigating.</p>
<figure id="attachment_430" aria-describedby="caption-attachment-430" style="width: 600px" class="wp-caption aligncenter"><img decoding="async" loading="lazy" class="thumbnail size-full wp-image-430" title="Charger B charging circuit" alt="Charger B charging circuit" src="http://blog.ba0sh1.com/wordpress/wp-content/uploads/2012/10/db0ce-charger-b-charging-circuit.jpg" width="600" height="450" srcset="https://ba0sh1.com/wp-content/uploads/2012/10/db0ce-charger-b-charging-circuit.jpg 600w, https://ba0sh1.com/wp-content/uploads/2012/10/db0ce-charger-b-charging-circuit-300x225.jpg 300w" sizes="(max-width: 600px) 100vw, 600px" /><figcaption id="caption-attachment-430" class="wp-caption-text">Charger B charging circuit</figcaption></figure>
<p>The charging circuit is based on the chip marked &#8220;2YL6&#8221;. Again it is some internal code. But this time Google resolves some post at Yahoo groups which leads to this <a href="http://www.belling.com.cn/upload/BL4054_en.pdf">datasheet</a>. The actual part number is BL4045, by Shanghai Belling Co. Ltd. It does CC/CV charging and automatic termination. Everything looks fine here.</p>
<figure id="attachment_431" aria-describedby="caption-attachment-431" style="width: 600px" class="wp-caption aligncenter"><img decoding="async" loading="lazy" class="thumbnail size-full wp-image-431" title="Charger B protection circuit" alt="Charger B protection circuit" src="http://blog.ba0sh1.com/wordpress/wp-content/uploads/2012/10/2a751-charger-b-protection-circuit.jpg" width="600" height="450" srcset="https://ba0sh1.com/wp-content/uploads/2012/10/2a751-charger-b-protection-circuit.jpg 600w, https://ba0sh1.com/wp-content/uploads/2012/10/2a751-charger-b-protection-circuit-300x225.jpg 300w" sizes="(max-width: 600px) 100vw, 600px" /><figcaption id="caption-attachment-431" class="wp-caption-text">Charger B protection circuit</figcaption></figure>
<p>The protection is using the same chip &#8220;DW01&#8221; as we seen in charger &#8220;A&#8221;. Only difference here is that charger &#8220;B&#8221; uses one 8205A MOSFET instead of two in Charger &#8220;A&#8221;. Since 8205A is dual MOSFET, why charger &#8220;A&#8221; needs two of them?</p>
<figure id="attachment_432" aria-describedby="caption-attachment-432" style="width: 600px" class="wp-caption aligncenter"><img decoding="async" loading="lazy" class="thumbnail size-full wp-image-432" title="Charger B MCU" alt="Charger B MCU" src="http://blog.ba0sh1.com/wordpress/wp-content/uploads/2012/10/00017-charger-b-mcu.jpg" width="600" height="450" srcset="https://ba0sh1.com/wp-content/uploads/2012/10/00017-charger-b-mcu.jpg 600w, https://ba0sh1.com/wp-content/uploads/2012/10/00017-charger-b-mcu-300x225.jpg 300w" sizes="(max-width: 600px) 100vw, 600px" /><figcaption id="caption-attachment-432" class="wp-caption-text">Charger B MCU</figcaption></figure>
<p>Charger &#8220;B&#8221; also has a MCU to blink the LEDs. This time it is a Haier HR6P61P2S4L. Before today I thought Haier only makes washing machines and fridges <img src="https://s.w.org/images/core/emoji/14.0.0/72x72/1f641.png" alt="🙁" class="wp-smiley" style="height: 1em; max-height: 1em;" /> <a href="http://www.ichaier.com/show.php?contentid=114" target="_blank" rel="noopener">HR6P61</a> is a 8-bit, 8Mhz, Harvard architecture micro controller. The word &#8220;Harvard&#8221; sounds familiar to me &#8230; and no surprise Microchip is using the same architecture, and no no surprise Microchip has filed <a href="http://www.reuters.com/article/2007/07/05/idUSBNG27249520070705" target="_blank" rel="noopener">lawsuit</a> against Haier for copying there microcode. I have no authority to give  judgement here, but this kind of thing is not uncommon, shame! (after thoughts: maybe it explains why charger A has the chip blanked?)</p>
<p>Verdict: The build quality of this charger is decent. It functions well as a charger, but to use this as a lab power supply is a bit shaky. Use it for LED lamps perhaps.</p>
<p>&nbsp;</p>
<p>Charger &#8220;C&#8221;) This charger is special. The model is &#8220;ML-102&#8221;, originates from a design by members in a Chinese forum. I paid RMB 32 from taobao.com. This charger does not comes with battery, you have to supply your own 18650 lithium battery. The advantage of using external battery is that the capacity will never be over rated. How is the ripple? This is the result:</p>
<figure id="attachment_434" aria-describedby="caption-attachment-434" style="width: 320px" class="wp-caption aligncenter"><img decoding="async" loading="lazy" class="thumbnail size-full wp-image-434" title="Charger C ripple" alt="Charger C ripple" src="http://blog.ba0sh1.com/wordpress/wp-content/uploads/2012/10/acbab-charger-c-ripple.jpg" width="320" height="234" srcset="https://ba0sh1.com/wp-content/uploads/2012/10/acbab-charger-c-ripple.jpg 320w, https://ba0sh1.com/wp-content/uploads/2012/10/acbab-charger-c-ripple-300x219.jpg 300w" sizes="(max-width: 320px) 100vw, 320px" /><figcaption id="caption-attachment-434" class="wp-caption-text">Charger C ripple</figcaption></figure>
<p>73.6mV! Or 1.5% of full 5V range. Not too bad at all. Ripple frequency about 500kHz with some high frequency spikes.</p>
<figure id="attachment_436" aria-describedby="caption-attachment-436" style="width: 600px" class="wp-caption aligncenter"><img decoding="async" loading="lazy" class="thumbnail size-full wp-image-436" title="Charger C boost converter" alt="Charger C boost converter" src="http://blog.ba0sh1.com/wordpress/wp-content/uploads/2012/10/44f99-charger-c-boost-converter1.jpg" width="600" height="338" srcset="https://ba0sh1.com/wp-content/uploads/2012/10/44f99-charger-c-boost-converter1.jpg 600w, https://ba0sh1.com/wp-content/uploads/2012/10/44f99-charger-c-boost-converter1-300x169.jpg 300w" sizes="(max-width: 600px) 100vw, 600px" /><figcaption id="caption-attachment-436" class="wp-caption-text">Charger C boost converter</figcaption></figure>
<p>Here is the DC-DC converter, based on &#8220;PT1301&#8221;, datasheet <a href="http://www.micro-bridge.com/data/crpowtech/pt1301e.pdf" target="_blank" rel="noopener">here</a>. Rate efficiency is 88% flat at loads from 50-300mA, which is hard to believe. The maximum output current at 5V is 300mA, so do not expect this charger to charge quickly.</p>
<figure id="attachment_437" aria-describedby="caption-attachment-437" style="width: 600px" class="wp-caption aligncenter"><img decoding="async" loading="lazy" class="thumbnail size-full wp-image-437" title="Charger C protection circuit" alt="Charger C protection circuit" src="http://blog.ba0sh1.com/wordpress/wp-content/uploads/2012/10/f1d2e-charger-c-protection-circuit.jpg" width="600" height="337" srcset="https://ba0sh1.com/wp-content/uploads/2012/10/f1d2e-charger-c-protection-circuit.jpg 600w, https://ba0sh1.com/wp-content/uploads/2012/10/f1d2e-charger-c-protection-circuit-300x169.jpg 300w" sizes="(max-width: 600px) 100vw, 600px" /><figcaption id="caption-attachment-437" class="wp-caption-text">Charger C protection circuit</figcaption></figure>
<p>Protection circuit is &#8220;VGP4&#8221; and &#8220;8205&#8221;. Apparently 8205 is the MOSFET. VGP4 is? Google has no idea, let alone me.</p>
<figure id="attachment_438" aria-describedby="caption-attachment-438" style="width: 600px" class="wp-caption aligncenter"><img decoding="async" loading="lazy" class="thumbnail size-full wp-image-438" title="Charger C charging circuit" alt="Charger C charging circuit" src="http://blog.ba0sh1.com/wordpress/wp-content/uploads/2012/10/2d3c5-charger-c-charging-circuit.jpg" width="600" height="338" srcset="https://ba0sh1.com/wp-content/uploads/2012/10/2d3c5-charger-c-charging-circuit.jpg 600w, https://ba0sh1.com/wp-content/uploads/2012/10/2d3c5-charger-c-charging-circuit-300x169.jpg 300w" sizes="(max-width: 600px) 100vw, 600px" /><figcaption id="caption-attachment-438" class="wp-caption-text">Charger C charging circuit</figcaption></figure>
<p>Charging is supported by two <a href="http://www.tp-asic.com/res/tp-asic/pdres/201203/TP4057_42.pdf" target="_blank" rel="noopener">TP4057</a> and one Fairchild MOSFET FDS4953 at 1A charging current. It takes about 5 hours to fully charge my Panasonic NCR18650A 3100mAH cell. On the discharge side, it is enough to fully charge iPhone twice.</p>
<p>Verdict: The design of ML-102 is unique. It can be used as mobile charger or directly charge 18650 cells. However 18650 battery is not available on the consumer market (at least here in Singapore), so the charger is more suitable for the professionals. Overall the charger performs pretty well. May fat hop was that the schematic for this charger is open. But as a Chinese design I would rather not expect too much. As the output ripple voltage is considerably low, this charger is good for lab use to power digital circuits. But for analog circuits I would incorporate a linear LDO in series.</p>
<p>&nbsp;</p>
<p>Charger &#8220;D&#8221;) This is the first mobile charger I bought 3 years ago, long before the market is saturated with cheapo chargers. As it is from the famous &#8220;Energizer&#8221; brand I&#8217;m having good faith in it. And in fact after 3 years of extensive use it still stands strong, better than many laptop batteries.</p>
<p>The charger weights about 175g, rated at 4000mAH, I&#8217;d rather think it is under rated. The model number is &#8220;XP4001&#8221;, manufactured by &#8220;TennRich Electronics (Shen Zhen) Co., Ltd.&#8221;. At least the manufacture dare to put their name on it!</p>
<figure id="attachment_449" aria-describedby="caption-attachment-449" style="width: 320px" class="wp-caption aligncenter"><img decoding="async" loading="lazy" class="thumbnail size-full wp-image-449" title="Charger D ripple" alt="Charger D ripple" src="http://blog.ba0sh1.com/wordpress/wp-content/uploads/2012/10/a18fc-charger-d-ripple.jpg" width="320" height="234" srcset="https://ba0sh1.com/wp-content/uploads/2012/10/a18fc-charger-d-ripple.jpg 320w, https://ba0sh1.com/wp-content/uploads/2012/10/a18fc-charger-d-ripple-300x219.jpg 300w" sizes="(max-width: 320px) 100vw, 320px" /><figcaption id="caption-attachment-449" class="wp-caption-text">Charger D ripple</figcaption></figure>
<p>We check the ripple first. And Wah!  38mV peak-to-peak, and this 38mV is only contributed by spikes.</p>
<figure id="attachment_450" aria-describedby="caption-attachment-450" style="width: 600px" class="wp-caption aligncenter"><img decoding="async" loading="lazy" class="thumbnail size-full wp-image-450" title="XP4001 inside" alt="XP4001 inside" src="http://blog.ba0sh1.com/wordpress/wp-content/uploads/2012/10/101a0-charger-d-inside.jpg" width="600" height="337" srcset="https://ba0sh1.com/wp-content/uploads/2012/10/101a0-charger-d-inside.jpg 600w, https://ba0sh1.com/wp-content/uploads/2012/10/101a0-charger-d-inside-300x169.jpg 300w" sizes="(max-width: 600px) 100vw, 600px" /><figcaption id="caption-attachment-450" class="wp-caption-text">XP4001 inside</figcaption></figure>
<p>I was a bit hesitated to pry the case open, but I really want to see what&#8217;s inside. And in fact during the process I broke two plastic latches <img src="https://s.w.org/images/core/emoji/14.0.0/72x72/1f641.png" alt="🙁" class="wp-smiley" style="height: 1em; max-height: 1em;" /> Not surprisingly this time the battery has a label, although the label gives no information about the actual capacity. There is a &#8220;3M&#8221; double side tape on top but only used as &#8220;single side&#8221; tape. It would be harder for me to tear it apart if the top side also sticks to the case.</p>
<figure id="attachment_451" aria-describedby="caption-attachment-451" style="width: 600px" class="wp-caption aligncenter"><img decoding="async" loading="lazy" class="thumbnail size-full wp-image-451" title="XP4001 boost converter" alt="XP4001 boost converter" src="http://blog.ba0sh1.com/wordpress/wp-content/uploads/2012/10/ebea2-charger-d-boost-converter.jpg" width="600" height="450" srcset="https://ba0sh1.com/wp-content/uploads/2012/10/ebea2-charger-d-boost-converter.jpg 600w, https://ba0sh1.com/wp-content/uploads/2012/10/ebea2-charger-d-boost-converter-300x225.jpg 300w" sizes="(max-width: 600px) 100vw, 600px" /><figcaption id="caption-attachment-451" class="wp-caption-text">XP4001 boost converter</figcaption></figure>
<p>Here is the DC-DC part. Again a mysterious chip &#8220;L3K3&#8221;.</p>
<figure id="attachment_452" aria-describedby="caption-attachment-452" style="width: 600px" class="wp-caption aligncenter"><img decoding="async" loading="lazy" class="thumbnail size-full wp-image-452" title="XP4001 D filter" alt="XP4001 D filter" src="http://blog.ba0sh1.com/wordpress/wp-content/uploads/2012/10/cffc4-charger-d-filter.jpg" width="600" height="450" srcset="https://ba0sh1.com/wp-content/uploads/2012/10/cffc4-charger-d-filter.jpg 600w, https://ba0sh1.com/wp-content/uploads/2012/10/cffc4-charger-d-filter-300x225.jpg 300w" sizes="(max-width: 600px) 100vw, 600px" /><figcaption id="caption-attachment-452" class="wp-caption-text">XP4001 D filter</figcaption></figure>
<p>Interestingly just beside the DC-DC converter there is another inductor. Tracing the circuit, I realize it is actually an LC Π filter sits in-between the DC-DC converter and output socket. It explains why the ripple is so low in this charger. They really spare no effort to keep the waveform clean.</p>
<figure id="attachment_453" aria-describedby="caption-attachment-453" style="width: 600px" class="wp-caption aligncenter"><img decoding="async" loading="lazy" class="thumbnail size-full wp-image-453" title="XP4001 charging circuit" alt="XP4001 charging circuit" src="http://blog.ba0sh1.com/wordpress/wp-content/uploads/2012/10/9daeb-charger-d-charging-circuit.jpg" width="600" height="450" srcset="https://ba0sh1.com/wp-content/uploads/2012/10/9daeb-charger-d-charging-circuit.jpg 600w, https://ba0sh1.com/wp-content/uploads/2012/10/9daeb-charger-d-charging-circuit-300x225.jpg 300w" sizes="(max-width: 600px) 100vw, 600px" /><figcaption id="caption-attachment-453" class="wp-caption-text">XP4001 charging circuit</figcaption></figure>
<p>The XP4001 charging circuit is based on &#8220;VA720?&#8221; IC, manufactured by &#8220;VIMicro&#8221;, date code looks like 51 week of 2007. I have looked into VIMicro website but unable to find any information.</p>
<figure id="attachment_454" aria-describedby="caption-attachment-454" style="width: 600px" class="wp-caption aligncenter"><img decoding="async" loading="lazy" class="thumbnail size-full wp-image-454" title="XP4001 protection circuit" alt="XP4001 protection circuit" src="http://blog.ba0sh1.com/wordpress/wp-content/uploads/2012/10/1c258-charger-d-protection-circuit.jpg" width="600" height="450" srcset="https://ba0sh1.com/wp-content/uploads/2012/10/1c258-charger-d-protection-circuit.jpg 600w, https://ba0sh1.com/wp-content/uploads/2012/10/1c258-charger-d-protection-circuit-300x225.jpg 300w" sizes="(max-width: 600px) 100vw, 600px" /><figcaption id="caption-attachment-454" class="wp-caption-text">XP4001 protection circuit</figcaption></figure>
<p>The battery protection circuit is similar to all the others, using &#8220;312F&#8221; chip. No further information available.</p>
<p>Verdict: The XP4001 charger is among the best in terms of life span, output stability and build quality. Although expensive (S$99 three years ago), it really worth every cents. The output ripple is good enough for most lab use, adding some more filtering will make it even better. However this charger has a annoying feature that it disconnects its power if the load is too low. So I have to frequently press the button on the unit to keep it &#8220;awake&#8221;.</p>
<p>&nbsp;</p>
<p>Conclusion:  The electronics market is full of gimmicks. While consumers focuses more on appearance and advertised features, the internal quality of the product is often neglected. In the event that one cannot tear the product apart and check the internals, trusting the brand name seems to be the last insurance. And my advise to those who are constantly looking for bang-for-buck deals: never ever trust a Chinese product without looking inside of it.</p>
<p>&nbsp;</p>
<p>The post <a rel="nofollow" href="https://ba0sh1.com/2012/10/20/mobile-charger-review/">Mobile charger mini review</a> appeared first on <a rel="nofollow" href="https://ba0sh1.com">Digital Me</a>.</p>
]]></content:encoded>
					
					<wfw:commentRss>https://ba0sh1.com/2012/10/20/mobile-charger-review/feed/</wfw:commentRss>
			<slash:comments>5</slash:comments>
		
		
			</item>
	</channel>
</rss>
