123 Main Street, New York, NY 10001

Flash Booster + Charger Power Mux Coordination

← Back to: Battery Charging / Gauging / Protection / BMS

1) Problem & Page Intent: “Flash drains VSYS while charging”

This page explains a very specific charging-domain problem: when a high-current flash/LED boost fires while the device is charging and the input source (USB / adapter) is limited, the system rail (VSYS) can dip and cause MCU resets, camera freeze, and log loss. This is not a generic LED or lighting topic, and it is not a BMS master topic — it belongs under Charging → power-path / system-priority → flash event coordination.

In real products we often see this stack of conditions: (1) USB can only source 0.5–1 A, (2) the device is already charging, (3) the user triggers a flash or camera capture, (4) the charger keeps drawing current because it has no system-first / power-path logic, so the flash booster and the charger pull from the same limited input. Result: VSYS dips → MCU brown-out → user-visible glitch.

Therefore this page focuses on event coordination: the flash path and the charger power mux must be aware of each other. It is not about boost-efficiency tuning, and not about MOSFET selection in isolation.

  • Root cause 1 – Input power is limited: USB/adapter cannot feed charger + system + flash at once.
  • Root cause 2 – No system-priority power-path: the charger does not automatically give VSYS higher priority during surges.
  • Root cause 3 – No pre-notification: the flash event is not announced a few ms earlier, so the charger has no time to fold back.
Flash booster and charger power mux conflict on a power-limited input Input feeds both charger plus power mux and flash booster. When flash event occurs, VSYS dips and MCU may reset. Input USB / 5–12 V Power limited Charger + Power Mux “still drawing” VSYS MCU / Sensors Flash Booster Flash Event → VSYS dip reset?
Figure 1. Flash event and charger drawing from the same limited input can pull VSYS down and reset the system.

Conclusion of Chapter 1: if flash, charger, and power-path do not talk to each other, VSYS will dip. The rest of the page shows how to make them talk.

2) System Topology & Roles: “Who owns the input, who owns VSYS”

In charging-domain designs, the input source is usually single and limited, but the load branches are multiple: (a) charger (sometimes with system power-path), (b) system rail VSYS, and (c) a high-current flash/LED booster. Even if the schematic shows “flash from VBAT”, all these branches still depend on the same input quality. That is why the charger’s power mux / system-priority function must participate during flash.

We can classify the common layouts into three buckets: 1) flash from VBAT (needs charger assist), 2) flash from VSYS (needs power-path priority), 3) flash directly from input (needs input-awareness).

Three common topologies for flash–charger coordination Flash from battery, flash from VSYS, and flash from input, each with different coordination needs. Flash from VBAT Input Charger Battery Flash Needs charger assist Flash from VSYS Input Charger VSYS Flash Needs power-path priority Flash from Input Input Flash Charger Needs input awareness
Figure 2. Three common layouts: flash from VBAT (needs charger assist), flash from VSYS (needs power-path priority), flash from input (needs input-awareness).

If your charger does not have a power-path / system-first architecture, then all flash-time actions (foldback / suspend / priority) must be done in firmware — that is slower, less predictable, and harder for purchasing to keep consistent across replacements.

3) Flash Event Timing & Pre-Notification

When a high-current flash / LED booster fires while the device is charging from a limited source, the charger cannot reduce its current instantly. Its loop needs time, and so does the power mux to apply system-priority. This is why the flash path must tell the charger / power-path a few milliseconds before the actual flash event. If this pre-notification is missing, most brown-outs will not be from lack of input power but from late current foldback.

A robust implementation therefore has this timing pattern: T − 3 ms: charger folds backT0: flash booster firesT + 2 ms: VSYS is sampledT + X ms: charger ramps back in steps.

Notification sources

  • From the application processor: the AP knows a capture/flash is coming, so it asserts a GPIO / I²C command 3–10 ms earlier to request charger current foldback.
  • From the flash driver itself: many flash drivers expose a “charge complete / ready to fire” pin; this can be routed back to the charger or to a tiny controller.
  • From a small logic / Melexis / tiny MCU: it detects that the flash capacitor is about to discharge and pulls a CHG_SUSP / CHARGE_LIMIT line before the surge.

These three sources all serve the same goal: give the power-stage time to reallocate power to VSYS before the flash surge.

Choosing the pre-notification time depends on: (1) the charger loop response time, (2) the size of the VSYS capacitor, (3) the peak current of the flash. Faster chargers and larger VSYS capacitors can work with shorter notice; slow loops with small capacitors require 3–5 ms.

Pre-flash notification and charger foldback timing A timing diagram showing pre-notification, charger current foldback, the flash event, and VSYS staying flat. Time → T − 3 ms T0 T + 2 ms Flash request Charger current Pre-foldback Flash window Ramp-back (slow) VSYS VSYS kept above MCU reset Flash fire (T0)
Figure 3. A pre-flash notification gives the charger time to fold back before the surge. VSYS stays flat at T0.

If pre-notification is not possible, then the design must fall back to hardware hardening: larger VSYS capacitance, a faster power mux, or a staged flash current. But the event-driven approach is preferred because it is repeatable and can be logged.

4) Charger Power Mux Behavior During Flash

Even if your charger already includes a power-path / power mux, it may still let VSYS dip if it does not react to the flash event. During a flash, the mux must temporarily become system-first: give the limited input to VSYS, reduce or pause IN→BAT, and if needed allow BAT→SYS. Without this event-driven switch, the mux only does static source selection and cannot protect VSYS against sudden surges.

Two useful strategies

System-First (strict)

For USB 500 mA / 1 A or adapter-limited inputs. On flash: prioritize IN→SYS, stop IN→BAT, and optionally enable BAT→SYS. VSYS stays up, battery charge pauses.

Limited-Charge (soft)

For inputs that are almost enough. On flash: hold IN→SYS as first, but keep IN→BAT in trickle (50–100 mA). System is protected; charge just slows down.

Inside the charger/power-path we can describe it as three flows that must be rearranged during flash: IN→SYS, IN→BAT, and BAT→SYS. The flash event should de-prioritize IN→BAT and, if the battery is healthy, allow BAT→SYS to help the rail.

If the design uses two discrete load switches to create a mux, this is acceptable, but both switches must be controlled by the same flash-event signal; otherwise one path may still be on and VSYS will dip.

Power mux behavior during a flash event Input-limited source is redirected to VSYS, while battery charge is reduced, when a flash event is detected. Input limited Flash Event Power Mux system-priority VSYS keep alive Battery charge reduced SYS priority IN→BAT limited Input-limited mode
Figure 4. During a flash, the mux reroutes the limited input to VSYS, while the battery charge path is reduced or paused.

With a true power-path, the system can ride through the flash with only a temporary reduction in battery charge. Without it, the only option is to lower the entire input current, which can still cause a visible VSYS dip. Also note: this is a local path switch and does not renegotiate USB-C/PD contracts.

5) Brown-Out & Ride-Through Design

Even with pre-flash current reduction (Chapter 3) and system-priority power muxing (Chapter 4), some products will still see short VSYS dips — for example when the user fires flash during charging from a very weak USB source, or when flash overlaps with a TX/modem surge. This chapter adds the third defense layer: local ride-through energy and battery backfeed so that VSYS can stay above the MCU brown-out level for 1–10 ms.

Think of it as a 3-layer shield: (1) event-time current reduction, (2) instant system-priority, (3) short hold-up with capacitor or BAT→SYS. If layer 1 is late and layer 2 is incomplete, layer 3 must still protect application code, logs, and camera pipeline.

  • Layer 1 — Pre-limit (T − a few ms): charger folds back / suspends before flash.
  • Layer 2 — System-first at T0: power mux sends limited input to VSYS, reduces IN→BAT.
  • Layer 3 — Ride-through (T + 1…10 ms): VSYS is supported by local caps or battery backfeed until currents settle.

The MCU brown-out level must be configured against the real flash waveform. If MCU BOR is set higher than the “flash-dip” level, even a 150–200 mV wobble will reboot the system and engineers may wrongly debug firmware while the root cause is power.

Ride-through capacitor quick sizing

C_needed ≈ (I_flash × t_flash) / ΔV_sys
Example: I_flash = 2.5 A, t_flash = 3 ms, ΔV_sys = 0.3 VC ≈ 25 mF → normal MLCCs will not be enough → use hold-up/supercap or rely on BAT→SYS.

When temperature is low (automotive, industrial), effective capacitor value drops. Margin the capacitance or shift more work to battery backfeed. If the charger/power-path supports BAT→SYS, the ride-through capacitor can be smaller.

Three-layer brown-out prevention for flash events Top: pre-limit, middle: system priority, bottom: ride-through cap/BAT support. Layer 1 — Pre-limit (T−3 ms) Charger foldback / suspend before flash If this fails ↓ Layer 2 — System priority (T0) Power mux sends limited input to VSYS, charge reduced If this fails ↓ Layer 3 — Ride-through energy (T+1…10 ms) Local cap + BAT→SYS keep VSYS above MCU brown-out Final safety Brown-out avoided
Figure 5. Three-layer brown-out prevention for flash events: pre-limit, system priority, and ride-through energy.

The key message of this chapter: when coordination is not sufficient, add energy. Ride-through lets the rest of the system be less perfect.

6) Thermal, Duty, and Recurrent Flash Management

Flash firing does not only draw current — it also dumps heat into a board that may already be hot because of battery charging. If the charger is in thermal regulation and flash keeps coming, VSYS can oscillate and the user may report “flash got weak”. The fix is to bind flash duty and charger current to the same thermal signal and to flash frequency.

A good rule is: only allow the charger to return to full current when the gap between two flash events is long enough (for example > 200 ms). Otherwise the charger should stay in a reduced-current state to avoid a “flash → full charge → flash → full charge” sawtooth on VSYS.

Thermal / duty collaboration rules

  • Three thermal triggers: (1) battery/pack NTC over limit, (2) charger enters thermal regulation, (3) flash/LED switch over-temperature.
  • Single action: if any of the above is hit → lower flash duty/peak AND lower charge current.
  • Shared sensing: flash driver and charger should read the same board NTC, so they do not work against each other.
  • Frequency-aware charging: when flash events are closer than 200 ms, hold the charger in a partial-recovery state.

BOM remark (for purchasing): “Flash power and charge current must share the same thermal source. Do not replace the charger with a device that lacks thermal regulation reporting, or coordinated power reduction during flash will be lost.”

Flash and charger thermal coordination As the board temperature rises to a threshold, both flash duty and charge current are reduced together. Board / NTC temperature Thermal threshold Flash duty Duty reduced Charge current Charger in thermal regulation Shared NTC Flash + Charger
Figure 6. Shared thermal sensing reduces both flash duty and charger current when the board temperature rises.

With this chapter, recurrent flash (camera bursts, inspection strobes, security beacons) will no longer fight with the charger. Both power flows listen to the same temperature and to the same timing rules, so VSYS remains calmer.

7) Faults, Reporting, and Host Interaction

This chapter makes flash-related power problems visible. Instead of a silent MCU reset, the system should log: “a flash was fired”, “the charger did/did not fold back”, “VSYS dipped to N mV”, and “input was limited”. That way, manufacturing, field service, and your BMS-layer logging under the Battery Charging / Gauging / Protection / BMS domain can tell what happened.

Typical flash-related power faults

1) Charger didn’t fold back → VSYS dip

Flash fired but the charger was still pulling input current. VSYS went below margin. Log both the flash event and VSYS_MIN.

2) Flash during battery undervoltage

Battery was already low → flash must be blocked. Report to host so UX can downgrade (“photo only, no flash”).

3) Too many flashes / min

Charger cannot recover; report “flash_rate_limit_hit” to tell the host to slow down capture or reduce brightness.

4) Input-limited

Source is power-limited (USB 500 mA / weak adapter). Report to host for UX downgrade and to tag flash logs with “input-limited”.

Which faults go to BMS, which stay local?

Only user-visible or field-debug-critical faults should go to the main BMS / host log. Timing/tuning-level misses stay in the local MCU ring buffer.

  • Go to BMS / host: VSYS actually dipped below safe level; flash was blocked; long-term input-limited; thermal caused flash/charge derate.
  • Stay local: foldback was 1 ms late; flash rate nearly hit limit; VSYS dipped but stayed above MCU BOR.

Recommended I²C / SMBus register set

  • FLASH_EVT — fired / blocked_batt_low / blocked_thermal / rate_limit_hit.
  • CHG_SUSP — charger_foldback_active / input_limited / sys_priority_forced.
  • VSYS_MIN — lowest VSYS (mV) captured in this flash window; read-and-clear.
  • THERM_STATE — 0=normal, 1=charger in therm-reg, 2=flash derated, 3=board overtemp.

These 4 registers shall be forwarded to the parent “Battery Charging / Gauging / Protection / BMS” logging policy.

Flash-event fault reporting path Flash and charger modules send flash-related power faults to a fault aggregator, then to host MCU / BMS. Flash / Booster Flash fired / blocked Charger / Power Mux Foldback / SYS priority Fault Aggregator collect + timestamp VSYS_MIN / THERM_STATE VSYS low Charger suspended Host MCU UX downgrade BMS / Cloud Log long-term history Events: VSYS low, Charger suspended, Flash blocked
Figure 7. Flash and charger modules report flash-related power faults to the host MCU or BMS for logging.

With this fault path, manufacturing can capture “occasional reset during flash” and field teams can reproduce it by reading those four registers right after the flash.

8) Seven-Brand IC Mapping (Charging–Flashing–Coordinated)

This section maps the seven brands you are using — TI, ST, NXP, Renesas, onsemi, Microchip, Melexis — to the two sides of this page: (1) flash / LED / high-current booster devices and (2) charger / power-path / system-priority devices. The goal is not to repeat datasheets but to answer “can I mix TI flash with ST charger” and “what signal must I add”.

Rule of thumb: Same-vendor = simpler validation. Cross-vendor = event signal needed. Keep the pre-notify / suspend line so timing from Chapters 3–4 remains valid.

Flash / LED / High-current Boost

Per brand — typical parts and English full names.

  • TI — e.g. “High-Current Photo Flash LED Driver”, pre-notify / ready pin.
  • ST — “High-power white LED driver for camera flash”.
  • NXP — imaging / camera LED drivers (I²C controlled).
  • Renesas — LED/flash drivers for portable / industrial cameras.
  • onsemi — strong in LED/flash drivers for imaging.
  • Microchip — MCU + power stage for flash-timing logic.
  • Melexis — small logic / sensing to generate “flash coming”.

Charger / Power-Path / System-Priority

Per brand — devices that can react to flash events.

  • TI — Switch-mode battery charge management with system power-path.
  • ST — Battery charger with input current regulation and power-path.
  • NXP — PMICs for imaging / mobile with input-priority rails.
  • Renesas — Charger with I/O to suspend / limit during events.
  • onsemi — Power-path controllers for camera / IoT.
  • Microchip — Battery charger with I²C current control.
  • Melexis — Logic/sensor parts to gate charger during flash.

Recommended combination matrix

Preferred: TI flash + TI charger / ST flash + ST power-path / NXP imaging + NXP PMIC → native signals, fastest validation.

Mixed (needs event line): TI charger + onsemi flash, Renesas charger + external flash, Microchip charger + Melexis logic.

For China-based alternatives, keep the same flash-notify line so timing in this page still applies.

Seven-brand mapping for flash and charger coordination Left: seven brands, middle: flash side, right: charger side. Same-vendor simpler, cross-vendor needs event signal. TI ST NXP Renesas onsemi Microchip Melexis Flash side LED / photo flash pre-notify pins Charger / power-path system priority input current limit Same-vendor = simpler Cross-vendor → event signal needed
Figure 8. Mapping of TI, ST, NXP, Renesas, onsemi, Microchip, and Melexis parts for flash booster and charger power-mux coordination.

This mapping chapter stays short on purpose — it is for procurement and for fast cross-vendor answers. Timing, pre-notify, and VSYS protection still follow Chapters 3–6.

9) Validation, Test Scripts, and Seven-Brand Examples

This chapter turns everything from Chapters 1–8 into lab-executable validation steps. The goal is to prove, on real boards, that “when a flash / LED booster fires during charging from a limited input, the charger actually folds back and VSYS does not brown-out”. Every test case must capture the same set of signals so logs can be compared across brands and across charger generations.

1. Common measurement set (all scenarios)

For every flash-related test, capture at least the following quantities:

  • VIN — input voltage before/during flash (to detect input limitation).
  • VSYS — system rail, must capture minimum value.
  • VBAT — to see if battery is backfeeding VSYS during the flash.
  • ICHG — charger current; must show foldback then recovery.
  • IFLASH — flash/LED booster current pulse (peak + duration).
  • Temp / NTC — board or pack temperature, to correlate with thermal regulation.
  • Fault / INT pin — to log “flash blocked”, “input limited”, “charger suspended”.

2. Four mandatory test scenarios

Scenario A — Single flash @ nominal

Input 5 V / 1 A, charging enabled → fire one flash. Expect to see: short ICHG foldback, stable VSYS, INT pin notifies host.

Scenario B — Burst / continuous flash

Fire 3–5 flashes at 100 ms interval. Check that charger recovery slope is visible between flashes and that VSYS does not accumulate droop.

Scenario C — Low-temperature flash

Place DUT in low-temp chamber. Capacitance is lower → verify ride-through still covers 1–10 ms. Record Temp, VSYS, ICHG.

Scenario D — Input-limited flash

Limit source to 500 mA, keep charging, then fire flash. Expect: input-limited flag → charger foldback → VSYS stable → host can downgrade UX.

3. Capture window & pass/fail criteria

Because charger foldback and power-path switching are not instantaneous, all oscillograms must cover both sides of the flash event:

  • Capture window: at least ±10 ms around the flash → ≥ 3 ms before, ≥ 7 ms after.
  • VSYS limit: VSYS must not drop below 3.0 V, or below (MCU BOR – 0.1 V) if the MCU has a different BOR.
  • Charger recovery: ICHG must start to recover in 5–10 ms after flash ends. If not, log it.
  • Event logging: If VSYS goes below target, log the four registers from Chapter 7 (FLASH_EVT, CHG_SUSP, VSYS_MIN, THERM_STATE).

4. Seven-brand validation listing (what to measure on each)

Below is an execution-oriented listing — which side to use for flash, which side for charger/power-path, and what the validation should prove. Replace the part numbers with the actual PNs you stock, but keep the measurement logic.

TI

Charger / power-path: BQ25895 / BQ2560x class

Flash / LED: LM355x / TPS6131x class

Test: I²C foldback → flash → read VSYS_MIN; verify pre-notice really reduces ICHG.

ST

Charger / power-path with input regulation

Flash / LED: STCF0x camera flash drivers

Test: use flash “ready” or “fire” pin to pull charger current down; check delay < few ms.

NXP

PMIC / charger for imaging

I²C-controlled flash devices

Test: sequential I²C — notify charger → fire flash → read charger status → confirm VSYS did not dip.

Renesas

Charger with system rail (ISL9xxx class)

External flash, driven by MCU IO

Test: MCU asserts flash → same signal suspends charger → VSYS must stay > BOR – 0.1 V.

onsemi

Camera/IoT chargers or power-path

LED / flash drivers

Test: prove cross-vendor timing — onsemi flash event must still make the charger reduce input.

Microchip

Power-path charger (e.g. MCP73871-type)

MCU-based flash timing

Test: same MCU pin drives flash + charger limit; confirm both react inside 2–3 ms.

Melexis

Event / sensor / thermal helpers

Used as “flash coming” detector

Test: Melexis detects cap discharge → pull charger suspend → fire flash → log THERM_STATE + VSYS_MIN.

Note: keep the ±10 ms waveform rule for all seven brands so cross-comparison stays meaningful.

Request a Quote

Accepted Formats

pdf, csv, xls, xlsx, zip

Attachment

Drag & drop files here or use the button below.

10) Frequently Asked Questions (Flash × Charger × Power Mux)

This FAQ only answers questions from this page’s scope: firing a flash / LED booster while the product is charging from a limited source and a power-path or charger must make way for VSYS. It does not cover USB-C / PD contract, multi-cell balancing, or generic fast-charging negotiation.

Why does VSYS dip only when I fire flash during charging?

Because both the charger and the flash booster are pulling from the same limited input. If the charger is not pre-notified, it keeps drawing current for a few ms, so VSYS sags.

Do I always need a pre-flash notification to the charger?

In power-limited systems, yes. Foldback is loop-based and not instantaneous; a 2–3 ms early signal makes the difference between a flat VSYS and an MCU reset.

What is the minimal pre-notice time I should start from?

Start with 3 ms before the flash event, then tighten. Shorter than 1 ms usually needs a very fast power-path or local hold-up capacitor.

Can I keep charging while flash is firing from the same rail?

Yes, if the charger supports system-priority and input-current regulation. It will momentarily give VSYS the power and reduce battery charging current.

What if my charger does not have a system-priority power-path?

Then you must do it in firmware: detect “flash coming” and explicitly reduce the charger current, or add a dedicated power mux in front of VSYS.

How do I test the “input-limited flash” case?

Set your lab supply to the intended USB current (500 mA / 1 A), enable charging, then fire flash. Log VIN, VSYS, ICHG, and the input-limit/fault bits.

How do I set the MCU brown-out so flash will not reset it?

Measure the worst-case VSYS during flash (±10 ms window) and set BOR slightly below it, typically BOR = flash VSYS min − 0.1 V.

Do I need a big capacitor if I already have pre-notice?

In many products, yes — pre-notice can still be late or missed. A small hold-up cap or BAT→SYS path is the final safety if coordination fails.

Can I mix TI flash drivers with ST or Renesas chargers?

Yes, but you must keep the event/interrupt line so the charger knows flash is coming. Cross-vendor combinations always need an explicit signal.

Why does the charger take several ms to recover after flash?

To keep VSYS flat, chargers usually ramp back slowly. If your camera needs faster retries, lower the flash rate or shorten the recovery ramp in firmware.

How long should I keep the waveform logs?

Keep at least ±10 ms for every flash event. This window shows pre-notice, the actual flash, and the charger recovery part.

Which brands already support fast foldback on a pin or I²C bit?

TI, ST, NXP, Renesas, onsemi, Microchip and Melexis can all be used in this page’s coordination model; just make sure the charger side really reacts to the flash-side signal.