Thursday 10 November 2016

power supply - Using a regulator or not?


We have designed a board for mass production . This board has a few components on it, that works with 3v3 , such as MCU, Wi-Fi, and a few more sensors.


We used to have a battery, 3.7v to power the board directly, and later on, we have decided that we must use a regulator, because its more safe . the regulator is AMS1117



After some research, we found out that this regulator(and others) must have 1V more in its input,relative to its output .


So, using a battery pack of 3.7v lithium, will not work properly for such regulators(3.3v) , even when its charged with 4.2v .


We found out that logically ,connecting the battery directly (no regulator) to the board is much clever, because you can "enjoy" the battery power as long as it is > 3.3v .


Our only concern is that we are not using a regulator, and its not healthy .


Is that a good thing to do- "professional" ?


do you think of more options,such a zener diode instead of a regulator ?



Answer



If you're asking questions like this, you're not ready for "mass production", whether you wish to be professional or not.


You need to look at the supply voltage range of everything, and then see if the range of your battery's voltage from full to flat will work. If not, then you will likely need either a very-low-dropout linear regulator (hint: the AMS1117 isn't), or a type of buck-boost switch-mode regulator that can provide a stable 3.3V supply from a source that can be either above or below the output (i.e. as the battery goes from full to flat). For a linear regulator option, even if the battery voltage drops below the regulator's drop-out voltage (for a 3.3v LDO regulator's output, lets say it's 3.5V, 200mV above output), then you might be able to get away with that - the regulator won't really be in regulation, but depending on your load profile that may or may not matter much.


When you say a "3.7 lithium" battery, its range between full to flat will be ~4.2V full, to no less than 3.0V flat. And you don't charge lithium with a constant voltage source. Well, at least not at first - lithium battery charging is at least a 2-stage process, first constant-current, then constant-voltage, using a charge management chip specific to Lithium chemistry.



You are not ready for mass production, not even close.


No comments:

Post a Comment

arduino - Can I use TI's cc2541 BLE as micro controller to perform operations/ processing instead of ATmega328P AU to save cost?

I am using arduino pro mini (which contains Atmega328p AU ) along with cc2541(HM-10) to process and transfer data over BLE to smartphone. I...