The short answer: use a switching DC-DC converter when the voltage step is large, the current is high, or the product runs on a battery; use an LDO when the step is small and the load needs a quiet, low-noise supply. Most real products use both — a switcher to get from the input down to an intermediate rail efficiently, then a small LDO to clean that rail up for the sensitive analog and RF sections. The choice is not academic. It shows up directly as runtime on a battery, heat inside a sealed enclosure, noise in your measurements, and lines on your bill of materials.
How Each One Works
The linear regulator (LDO)
A low-dropout linear regulator behaves approximately like an automatically adjusted resistor in series with the load. It drops the excess voltage and turns it into heat. Output current is essentially equal to input current, so there is no power gain — the efficiency is roughly the ratio of output voltage to input voltage.
Concretely: 5 V in, 3.3 V out, 200 mA load means about 0.34 W dissipated in a small package. Tolerable. Change the input to 12 V at 500 mA and you are dissipating over 4 W in a part the size of a grain of rice, which is no longer a regulator — it is a heater with a voltage reference.
The switching converter (DC-DC)
A switching converter chops the input at high frequency and reconstructs a stable output through an inductor and capacitor. It converts power to power rather than burning the difference, so efficiency stays high even across a large voltage step. A buck steps down, a boost steps up, and buck-boost topologies do both — which is exactly what you need when a lithium cell sags from full charge to cutoff and your rail has to stay put across that whole range.
Five Criteria That Decide It
- Efficiency. A good switcher stays high across a wide input range. An LDO is capped by the voltage ratio, and a big step means most of your energy is discarded.
- Heat. A direct consequence of the above. An LDO with a large drop needs copper area to spread heat, and sometimes forces changes to the enclosure — see thermal management in electronics.
- Noise. Here the LDO wins decisively. Its output is clean, with no switching ripple, and good parts have strong power-supply rejection. A switcher generates ripple at its switching frequency plus harmonics, and radiates enough to matter.
- Area and cost. An LDO is one part and two capacitors. A switcher needs an inductor, more capacitors, often feedback resistors, and careful placement — more BOM lines, more board area, more layout risk.
- Quiescent current. Decisive in battery products. Some LDOs idle at well under a microamp; some converters have pulse-skipping light-load modes that hold efficiency down to microamp loads, and others do not. Select for the operating state the product is actually in most of the time, not for the peak.
The Architecture That Usually Wins
In practice the rule is simple: switcher on the main rail, LDO on the sensitive branches. Step from the input down to an intermediate voltage efficiently with a buck converter, then feed a small LDO from that rail to supply the parts that care about noise — the ADC reference, the RF front end, a microphone preamp, a precision sensor bridge. Because the LDO is only dropping a few hundred millivolts, its loss is negligible and its output is clean.
When is an LDO alone enough? When the product runs from an external wall adapter, the voltage step is small, and the current is modest. When should you use switching only? When you run from a battery, when the step is large, or when loads reach hundreds of milliamps and up.
What Teams Forget to Check
- Dropout voltage. An LDO stops regulating once the input-to-output difference falls below its dropout. On a discharging battery this is precisely what makes a product shut off earlier than the cell capacity suggests it should — a calculation that belongs in battery pack design.
- Load transient response. A cellular or radio module draws short, violent current pulses. If the rail cannot follow, the voltage dips, the microcontroller browns out and resets, and you get a field failure that never reproduces on the bench.
- Layout of the fast loop. In a switching converter the high-di/dt loop must be physically tiny, with a solid return path. Get this wrong and the product fails emissions testing — the connection between stackup and noise is covered in choosing a PCB layer count, and the consequences in EMC testing.
- Real thermal behavior. A calculation on paper is not a measurement. Instrument a prototype inside the closed enclosure, at the highest ambient the product will see, and check junction temperature against the derating curve.
- Long-term availability. A cheap regulator that goes end-of-life stops a production line as effectively as a design flaw. Check lifecycle status and second sources before you commit a footprint.
- Feedback network and stability. Ceramic capacitor value drops with DC bias and temperature. A loop that is stable on the bench at room temperature can ring at cold or under bias — verify with a real load step, not just a scope shot at idle.
Why This Decides Battery Life
In products that sleep most of the time and wake briefly, the regulator choice affects runtime more than any code optimization will. A converter with high quiescent current wastes more energy while the device sleeps than the processor consumes while it works. So the power-tree decision has to be made together with the firmware power states — how often you wake, how long you stay up, which rails you shut down entirely. That co-design is the subject of low-power firmware and sleep modes, and it is also why the regulator conversation happens in the same week as choosing a microcontroller, since the MCU's own sleep currents set the floor.
There Is No Single Right Answer
There is a correct match for each rail in the product. A typical connected device might have a buck from the input, a buck-boost for the radio, an always-on nanopower LDO for the real-time clock, and a clean LDO for the analog front end. That is not over-engineering — it is what happens when each branch is sized for its own job.
Working out the power architecture for a product in development, or chasing a rail that misbehaves only in the field? Send us the details through our contact form and we will review the power tree with you. More on circuit-level decisions is collected in our electronics development guide.