If your battery-powered IoT node sleeps 99% of the time and wakes to draw less than 300mA, a low quiescent current LDO is your mandatory default choice over a switching buck converter. While switching regulators dominate high-current and high-voltage-differential applications, their fixed switching overhead destroys battery life in micro-power sleep states. A modern low quiescent current LDO (Low Dropout Regulator) draws less than 2 µA of ground current while maintaining a clean, ripple-free output rail for sensitive RF and analog circuits.
This guide cuts through the topology debates, runs the thermal and dropout math, and provides a concrete decision framework to select the exact part number for your next battery-powered design.
Linear vs. Switching: When a Low Quiescent Current LDO Wins
The choice between a linear regulator and a switching buck converter comes down to your load profile and noise tolerance. Switching regulators achieve 85-95% efficiency by rapidly toggling a MOSFET and storing energy in an inductor. However, the gate-charge losses, oscillator bias, and feedback network require a baseline quiescent current (Iq)—typically 50 µA to 2 mA. If your MCU is in deep sleep drawing 10 µA, a buck converter drawing 500 µA of Iq means your power supply is consuming 50 times more current than your load.
A low quiescent current LDO bypasses this issue. By using a high-gain error amplifier and a PMOS pass element, modern LDOs achieve Iq values between 0.5 µA and 2.0 µA.
Ripple and Noise Expectations
Because an LDO operates in the linear region, it generates zero switching noise. More importantly, it actively rejects input ripple through its Power Supply Ripple Rejection (PSRR) specification. A quality LDO like the TI TLV757P offers a PSRR of -50 dB at 1 kHz. If your unregulated input has 50 mV of ripple from a noisy upstream DC-DC stage or battery ESR, the LDO attenuates that ripple to roughly 150 µV at the output. For powering 12-bit ADCs, LoRa transceivers, or precision op-amps, this clean rail is non-negotiable.
Topology Comparison: Efficiency, Heat, Noise, and Cost
To understand where the low quiescent current LDO fits in the broader power design landscape, compare it against synchronous bucks and charge pumps across critical bench metrics.
| Metric | Low Iq LDO (e.g., TLV757P) | Synchronous Buck (e.g., TPS62740) | Charge Pump (e.g., LM2776) |
|---|---|---|---|
| Efficiency at 10 µA Load | ~90% (Limited by Iq) | ~40% (Switching/Iq overhead) | ~60% (Capacitor ESR losses) |
| Efficiency at 250 mA Load | ~78% (Vin=4.2V, Vout=3.3V) | ~92% | ~85% |
| Quiescent Current (Iq) | 0.8 µA typical | 400 nA to 2 mA (varies by mode) | 50 µA typical |
| Output Noise / Ripple | Ultra-low (PSRR limited) | 10-30 mV switching ripple | High (charge injection spikes) |
| BOM Cost & Footprint | Low ($0.20, 2 caps) | High ($1.50+, inductor, 3 caps) | Medium ($0.80, 4 caps) |
Source: Comparative analysis based on TI Application Report SLVA646 and manufacturer datasheets.
The Math: Dropout, Headroom, and Thermal Derating
Regulator picks are useless without verifying headroom and thermal limits. The two most common bench failures with LDOs are unintended dropout and thermal shutdown.
Dropout and Headroom Math
Dropout voltage ($V_{DO}$) is the minimum differential between input and output required to maintain regulation. For the TLV75733P (3.3V output), $V_{DO}$ is 160 mV at 150 mA.
Your minimum input voltage must satisfy:
V_IN(min) > V_OUT + V_DO
For a 3.3V rail at 150 mA: V_IN(min) > 3.3V + 0.16V = 3.46V. If you are running off a 1S Li-Ion battery that droops to 3.2V under a 250 mA RF transmit burst, the LDO will drop out, and your 3.3V rail will sag to ~3.04V, potentially browning out your ESP32.
Thermal Derating and the SOT-23 Trap
An LDO dissipates excess voltage as heat. The power dissipation ($P_D$) formula is:
P_D = (V_IN - V_OUT) * I_OUT
A standard SOT-23-5 package has a junction-to-ambient thermal resistance ($\theta_{JA}$) of roughly 170 °C/W. If you step 12V down to 3.3V at just 200 mA, your power dissipation is
(12 - 3.3) * 0.2 = 1.74W. The temperature rise will be 1.74W * 170 °C/W = 295 °C. The silicon will instantly hit its 150 °C thermal shutdown limit. Rule of thumb: Never dissipate more than 400 mW in a SOT-23-5 package without dedicated PCB copper heatsinking.
Design Example: 3.3V Rail for a Li-Ion IoT Sensor Node
Let’s design a robust power stage for an ESP32-C3 sensor node powered by a 1S Li-Ion cell (4.2V full, 3.0V empty). The node sleeps at 15 µA and peaks at 250 mA during Wi-Fi transmission.
Input Protection and Capacitor Selection
Do not use a Schottky diode for reverse polarity protection here. A Schottky drops ~0.3V, which eats directly into your headroom and guarantees dropout at the end of the battery discharge curve. Instead, use a P-channel MOSFET (like the SI2301, $R_{DS(on)}$ = 45 mΩ). At 250 mA, it drops only 11 mV.
The Capacitor ESR Gotcha: Older LDOs (like the Microchip MCP1700) relied on the Equivalent Series Resistance (ESR) of tantalum output capacitors to stabilize the feedback loop. Modern low-Iq LDOs like the TLV757P use internal zero compensation. If you put a high-ESR tantalum on a TLV757P, the output will oscillate. You must use low-ESR X7R or X5R MLCC ceramic capacitors.
| Component | Specification | Purpose |
|---|---|---|
| U1 (Regulator) | TI TLV75733PDBV (SOT-23-5) | 3.3V Out, 0.8 µA Iq, 500mA max |
| Q1 (Protection) | SI2301 P-Channel MOSFET | Reverse polarity protection (11mV drop) |
| C_IN (Input Cap) | 1 µF, 10V, X7R, 0402 | Local charge storage, loop stability |
| C_OUT (Output Cap) | 1 µF, 10V, X7R, 0402 | Transient response, internal compensation |
Verifying the Thermal Budget
Worst-case thermal scenario occurs when the battery is fully charged (4.2V) and the radio is transmitting continuously (250 mA).
P_D = (4.2V - 3.3V) * 0.25A = 0.225W (225 mW)Temp Rise = 0.225W * 170 °C/W = 38.25 °C- At a 40 °C ambient enclosure temperature, the junction temp is
40 + 38.25 = 78.25 °C. This is well below the 125 °C safe operating limit.
Decision Tree: Picking Your Exact Regulator Part Number
Stop guessing. Use this decision matrix to lock in your power topology and part number based on your exact load parameters.
| Condition / Constraint | Topology Choice | Concrete Part Recommendation |
|---|---|---|
| Continuous load > 500 mA OR $V_{IN} - V_{OUT}$ > 3V at 200mA | Synchronous Buck | TI TPS62740 (Ultra-low Iq buck) or TPS563200 |
| Need negative voltage rail from positive input | Inverting Charge Pump | TI LM27761 |
| Peak load < 300 mA, Sleep Iq < 50 µA, $V_{IN}$ < 5.5V | Low Iq LDO | TI TLV75733PDBV (Default Pick) |
| Peak load < 150 mA, extreme space constraint, $V_{IN}$ < 6.0V | Low Iq LDO (Ultra-small) | Microchip MCP1700 (SOT-23-3) or TI TLV702 |
| $V_{IN}$ up to 24V, Peak load < 100 mA | High-Voltage LDO | TI TLV70933 (150mA, 24V max) |
For 90% of modern 3.3V battery-powered IoT and sensor designs (Li-Ion or 3xAAA inputs, ESP32/nRF52 loads under 300mA), the TI TLV75733PDBV is the definitive pick. It offers 0.8 µA Iq, excellent PSRR, built-in foldback current limiting, and requires only two 1 µF MLCCs. Design your PCB around this part unless your continuous thermal dissipation exceeds 400 mW.






