When pulling power from a 24V battery bank or solar charge controller to run mixed embedded loads, a naive regulator choice will either cook your components or drown your analog sensors in switching noise. For a typical 24V nominal system powering both 5V logic (1A) and a 3.3V precision ADC/microcontroller (200mA), your circuit power supply requires a two-stage hybrid topology: a high-efficiency synchronous buck converter stepping down to 5V, followed by a low-dropout (LDO) linear regulator for the 3.3V analog rail.
This guide provides the exact topology math, input protection requirements, and component values to build this supply without frying your board or failing EMC testing.
The Core Decision: Linear vs. Switching for Your Load
The first mistake makers and junior engineers make is defaulting to a linear regulator like the LM7805 or LM317 for high-input-voltage battery systems. Let's look at the thermal reality of dropping 24V to 5V at a modest 1A load using a linear topology versus a switching buck converter.
| Metric | Linear Regulator (e.g., LM317) | Switching Buck (e.g., TPS54360B) |
|---|---|---|
| Efficiency | ~20.8% (Vout / Vin) | ~88% (typical at 500kHz) |
| Power Dissipated (Heat) | 19.0 Watts | 0.68 Watts |
| Output Noise / Ripple | < 50 µV RMS (Very Low) | ~25 mV p-p (High) |
| Cost & Board Area | Low cost, requires massive heatsink | Higher component count, compact SMD |
However, switching regulators generate high-frequency ripple and electromagnetic interference (EMI). If your 3.3V rail powers a 16-bit ADC or an RF module (like an ESP32 or LoRa transceiver), that 25mV of switching ripple will destroy your signal-to-noise ratio. The solution is a hybrid approach: switch down to 5V for efficiency, then use an LDO to drop to 3.3V for ultra-low noise.
Defining the Input Range and Protection Boundaries
A "24V battery system" is rarely exactly 24.0V. A 24V lead-acid or LiFePO4 bank will sit between 22V (discharged) and 29.2V (absorption charging). Furthermore, inductive kickback from nearby relays, motors, or alternators can induce load-dump spikes up to 40V.
Your circuit power supply input stage must survive a continuous 32V and transient spikes of 45V. Here is the mandatory front-end protection network:
- Reverse Polarity Protection: Use a P-channel MOSFET (e.g., Si2301) instead of a diode. A diode drops 0.5V and wastes power; a P-FET drops roughly 20mV at 1A.
- Transient Voltage Suppression (TVS): Place a unidirectional TVS diode (e.g., SMAJ33A) immediately after the battery fuse. It clamps at 53.3V, protecting downstream caps.
- Input Capacitance: Use a minimum of 22µF (X7R, 50V rated) ceramic capacitor placed as close to the buck converter's VIN pin as possible to absorb high-frequency switching currents.
Worked Design Example: 24V to 5V/3.3V Mixed Load
Let's specify the exact silicon and passives for our two-stage supply. We will use Texas Instruments' TPS54360B for the 5V buck stage and their LP5907 for the 3.3V LDO stage.
Stage 1: The 5V Buck Converter (TPS54360B)
- Input: 18V to 32V continuous.
- Output: 5.0V @ 1.0A max.
- Switching Frequency: 500 kHz (set by RT resistor to GND).
- Inductor Selection: Target a 30% ripple current (0.3A). Using the formula L = (Vin_max - Vout) * Vout / (Vin_max * fs * delta_IL), we get roughly 22µH. Select a 22µH shielded power inductor (e.g., Würth 744774222) rated for at least 1.5A saturation current.
- Output Capacitor: Use two 47µF X7R ceramics (10V rated). Note: X7R capacitors suffer from DC bias derating. A 47µF cap at 5V bias will actually measure around 35µF. Two in parallel guarantee sufficient bulk capacitance to handle transient load steps.
Stage 2: The 3.3V Low-Noise LDO (LP5907)
We feed the LDO from the clean side of the 5V buck inductor. The LP5907 is specifically designed for RF and precision analog loads, offering ultra-low noise without requiring a noisy external reference bypass capacitor.
- Input: 5.0V (from buck).
- Output: 3.3V @ 200mA.
- Output Noise: < 6.5 µV RMS across 10Hz to 100kHz (verified by independent LDO noise analysis).
- Capacitors: Requires exactly 1µF (min) ceramic on input and output. Do not use higher ESR tantalums; the LP5907 is optimized for low-ESR MLCCs.
Thermal Management and Derating Realities
Even with a high-efficiency switcher, you must calculate junction temperatures to ensure reliability, especially in solar enclosures where ambient temperatures easily reach 50°C.
The TPS54360B comes in a WSON package with a thermal resistance (θJA) of roughly 40°C/W on a standard 2-layer PCB with modest ground plane copper. At 24V input, 5V output, and 1A load, the converter operates at about 88% efficiency. Output power = 5W. Input power = 5W / 0.88 = 5.68W. Power dissipated as heat = 0.68W.
Temperature Rise: 0.68W × 40°C/W = 27.2°C rise above ambient. If your enclosure ambient is 40°C, the silicon junction sits at 67.2°C. The absolute maximum junction temperature is 150°C, so you have an 82°C safety margin.
The Decision Tree: Picking Your Topology and Parts
Stop guessing and use this decision matrix to finalize your circuit power supply topology based on your specific load requirements.
| Condition | Topology Choice | Concrete Part Pick |
|---|---|---|
| Vin is < 1.5x Vout AND I_load < 100mA AND low noise required | Linear (LDO) | LP5907 or MCP1700 |
| Vin is > 1.5x Vout AND I_load > 50mA (Logic/Motors) | Switching Buck | TPS54360B or MP2359 |
| Vin is > 1.5x Vout AND load includes precision ADC/RF | Hybrid (Buck + LDO) | TPS54360B (5V) + LP5907 (3.3V) |
| Vin can be above OR below Vout (e.g., 12V to 12V regulated) | SEPIC or Buck-Boost | LM3489 or LTC3130 |
The Default Recommendation: If you are designing a circuit power supply for a 12V or 24V battery system that includes a microcontroller, sensors, and communication modules, default immediately to the Hybrid (Buck + LDO) topology. Use a wide-Vin synchronous buck to generate a 5V intermediate bus for your high-current digital loads and relays, and cascade an ultra-low-noise LDO off that 5V bus to feed your 3.3V analog and RF circuitry. This guarantees high battery efficiency, eliminates thermal shutdown risks, and provides the clean DC rails necessary for reliable sensor readings and wireless transmission.






