A low dropout voltage regulator (LDO) is a linear DC-DC converter that maintains a stable output voltage even when the input supply drops very close to the output target. The defining metric is the 'dropout voltage'—the minimum differential between input and output required to maintain regulation. Default rule: Use an LDO when your load current is under 500mA, your input-to-output differential is under 1.5V, and your circuit demands ultra-low output noise (such as 16-bit ADCs, RF transceivers, or precision sensor bridges). If your voltage drop is larger or your current exceeds 1A, you must switch to a switching buck converter to avoid thermal failure.
The Headroom Math: Why Dropout Dictates Your Topology
The most common point of failure in LDO design is ignoring the dynamic headroom requirement. Datasheets list a static dropout voltage ($V_{DO}$), but in practice, your input source has ripple. The true minimum input voltage equation is:
V_IN(min) = V_OUT + V_DO + V_ripple(peak-to-peak)
Consider a 3.3V rail powering an ESP32-S3 from a lithium-ion battery (nominal 3.7V, dropping to 3.2V at end-of-discharge). If you select an LDO with a 200mV dropout and your battery exhibits 50mV of transient ripple under TX burst loads, your absolute minimum input is 3.3V + 0.2V + 0.05V = 3.55V. When the battery sags to 3.2V, the LDO drops out of regulation, the output falls to ~3.0V, and the ESP32 brownout detector triggers a reset. For battery-powered 3.3V systems, you need an ultra-low dropout regulator with a $V_{DO}$ under 100mV, or you must accept a lower output voltage (e.g., 3.0V) if the MCU supports it.
Topology Showdown: LDO vs. Switching Buck Regulators
Choosing between a linear LDO and a switching buck converter is a tradeoff between efficiency, thermal management, and signal integrity. Here is how they compare across critical design criteria.
| Criteria | Low Dropout Voltage Regulator (LDO) | Switching Buck Converter |
|---|---|---|
| Efficiency | $\approx V_{OUT} / V_{IN}$. A 5V to 3.3V conversion is 66% efficient. 34% of power is lost as heat. | 85% to 95% across a wide load range. Power loss is primarily switching and conduction losses. |
| Heat Dissipation | High. $P_D = (V_{IN} - V_{OUT}) \times I_{LOAD}$. Requires careful PCB copper pour or large packages. | Low. Heat is distributed across the IC, inductor, and catch diode/sync FET. |
| Output Noise | Ultra-low (10µV to 50µV RMS). Excellent PSRR up to ~100kHz. Ideal for analog/RF. | High. Switching ripple (10mV to 50mV) at fundamental frequency (500kHz-2MHz) plus HF ringing. |
| BOM Cost & Size | $0.10 - $0.50. Requires only 2 ceramic capacitors. Tiny footprint (SOT-23, DFN). | $0.80 - $2.50. Requires inductor, input/output caps, and sometimes a bootstrap cap. Larger footprint. |
Design Example: 5V to 3.3V at 500mA and the SOT-23 Trap
Let's design a 3.3V rail for a mixed-signal microcontroller and I2C sensor suite drawing a continuous 500mA from a 5V USB source.
The Thermal Reality Check
Power dissipation ($P_D$) is calculated as:
P_D = (5.0V - 3.3V) \times 0.5A = 0.85W
Many hobbyists and junior engineers default to a SOT-23-5 package because it is small and cheap. However, a standard SOT-23-5 has a junction-to-ambient thermal resistance ($\theta_{JA}$) of roughly 150°C/W on a standard 2-layer FR4 PCB.
Temperature Rise = 0.85W \times 150°C/W = 127.5°C
At a 25°C ambient room temperature, the silicon junction reaches 152.5°C. Because most LDOs have thermal shutdown thresholds at 150°C, the regulator will repeatedly shut down and restart, causing the output voltage to sawtooth and the MCU to crash. This is the 'SOT-23 Trap'.
The Solution: Package Selection and Part Pick
To safely dissipate 0.85W without a heatsink, you need a package with a $\theta_{JA}$ under 60°C/W. We select the TLV1117-33 from Texas Instruments in a SOT-223 package. The SOT-223 features a large exposed thermal tab that solders directly to the PCB ground plane, dropping the $\theta_{JA}$ to approximately 50°C/W (assuming adequate copper pour).
Temp Rise = 0.85W \times 50°C/W = 42.5°C (Junction sits at a safe 67.5°C).
Input Range, Protection, and Ripple Expectations
An LDO is only as clean as its input, and its ability to reject input noise is defined by its Power Supply Rejection Ratio (PSRR). PSRR is measured in decibels (dB). A PSRR of 60dB means the LDO attenuates input ripple by a factor of 1,000.
However, PSRR is frequency-dependent. An LDO might offer 70dB of rejection at 1kHz (filtering out 120Hz mains hum from a transformer), but drop to 20dB at 1MHz. If your input is a switching buck converter operating at 1.5MHz, the LDO will pass a significant portion of that switching ripple directly to your load. Always check the PSRR vs. Frequency graph in the datasheet, not just the single headline number.
Input Protection Requirements
- External/Wall-Wart Inputs: Add a bidirectional TVS diode (e.g., SMAJ5.0A) on the input to clamp inductive spikes from long cable runs before they exceed the LDO's absolute maximum input voltage (often 15V to 20V).
- Battery Inputs: If the user can insert the battery backward, an LDO will instantly short the reversed battery to ground, destroying the silicon. Place a P-channel MOSFET in series with the input for reverse-polarity protection. The P-FET introduces a negligible voltage drop ($I_{LOAD} \times R_{DS(on)}$) compared to a standard diode.
The Decision Tree: Which Regulator to Pick
Stop guessing and follow this decision path to lock in your power topology and specific part number.
| Condition | Action / Topology | Concrete Part Recommendation |
|---|---|---|
| $V_{IN} - V_{OUT} > 2.0V$ AND $I_{LOAD} > 500mA$ | Use a Buck Converter. An LDO will overheat and fail. | TPS54308 (TI) or AP63203 (Diodes Inc) |
| $I_{LOAD} > 1.0A$ (Any voltage drop) | Use a Buck Converter or a high-current LDO in a TO-263 package with a heatsink. | MP2359 (MPS) or LDO: MIC29302 |
| Load is an RF Module, 16+ bit ADC, or VCO | Use an Ultra-Low Noise LDO. Standard LDOs have too much broadband noise. | TPS7A4701 (TI) - 4.4µV RMS noise, 72dB PSRR at 1MHz. |
| Battery powered, $V_{IN}$ sags close to $V_{OUT}$ | Use an Ultra-Low $V_{DO}$ LDO. Needs $<100mV$ dropout at max load. | AP2112K-3.3 or TLV75533P |
| General MCU/Sensor, $V_{IN}=5V$, $V_{OUT}=3.3V$, $I_{LOAD} \le 800mA$ | Use a Standard LDO in SOT-223. Cheap, robust, adequate PSRR. | TLV1117-33 (Default workhorse pick) |
For 90% of standard 5V-to-3.3V microcontroller projects drawing under 800mA, the TLV1117-33 in a SOT-223 package is the definitive choice. It provides adequate thermal headroom, is stable with cheap X7R ceramics, and costs under $0.25 in volume. Reserve the expensive ultra-low noise LDOs like the TPS7A47 strictly for the analog rails where signal integrity dictates the BOM. For deeper architectural guidance on linear regulation, reference the Texas Instruments LDO design hub or the SparkFun voltage regulator tutorials.






