Maker Pro
Maker Pro

MCU voltage regulator

NMNeil

Oct 3, 2014
111
Joined
Oct 3, 2014
Messages
111
Remember I'm a newbie for electronics and have only just started using PIC and Atmel microcontrollers in my simple learning projects, but a question.
Why don't microcontrollers have a voltage regulator built into the chip?
I have some old A3141 hall sensors that can take an input voltage of up to 24 volts because it has an internal voltage regulator, keeping the parts count down, But if I use a microcontroller in the same circuit I have to add the regulator and caps, so an MCU with a built in regulator would be very handy.
There must be a valid reason why it's not so, it's just that I can't think what it could be.
 

Harald Kapp

Moderator
Moderator
Nov 17, 2011
13,722
Joined
Nov 17, 2011
Messages
13,722
Why don't microcontrollers have a voltage regulator built into the chip?
2 reasons:
  1. The power dissipation of the voltage regulator will heat up the chip unnecessarily.
  2. The comparatively large structures required to handle the power within a voltage regulator are different from the small structures of the MCU itself.
That said, this is not a rule set in stone. For example Intel's 4th generation microprocessors had integrated voltage regulators. However, those were removed in later versions.
 

BobK

Jan 5, 2010
7,682
Joined
Jan 5, 2010
Messages
7,682
Actually, many of the newer PICs do have a builtin regulator which takes the input voltage of 3.3 or 5V down to, I think 2.5V used internally. Any PIC that has a Vcap pin has this regulator.

The reason for this is because the lower internal voltage allows higher speed at the same power but you need the higher supply voltage for I/O.

There are also some PICs with an HV in the name that have a shunt regulator built in and can operate at up to 12V with only a series resistor to drop the extra voltage.

In addition to the extra heat mentioned br Harald, having a more robust regulator would require a higher input voltage to overcome the dropout voltage, and this would waste power in a chip that is optimized for very low power.

Bob
 
Top