How to Identify Critical Components

🔑 How to Identify Critical Components

  1. Power Sources & Regulators

    • Any regulator (LDO, DC/DC, switching regulator) and its input/output capacitors are critical.

    • Placement rule: keep input/output capacitors as close as possible to the regulator pins.

    • Why: long traces → parasitic inductance → noise + instability.


  1. Decoupling Capacitors near ICs

    • For every IC, small bypass caps (0.1 µF, 1 µF) are critical.

    • Placement rule: place right at the VCC/GND pins, shortest loop possible.

    • Why: they suppress high-frequency noise.


  1. High-Speed / Sensitive Signals

    • Clocks, differential pairs (USB, Ethernet, LVDS), RF parts, or ADC inputs.

    • Placement rule:

      • Keep traces short.

      • Route directly to destination.

      • Ensure continuous ground plane underneath.

    • Why: these signals are noise-sensitive or emit noise themselves.


  1. Analog vs. Digital Separation

    • Mixed-signal chips (like microcontrollers with ADCs) often have “AGND” and “DGND” pins.

    • Placement rule: analog front-end (sensors, op-amps, filters) should be grouped together and separated from digital logic/noisy switching.


  1. Thermal / High-Current Paths

    • MOSFETs, power resistors, inductors, motor drivers.

    • Placement rule: minimize path length for high-current loops, use wide copper pours, and keep them away from sensitive analog.


  1. Connectors / I/O

    • Connectors define the board edge placement.

    • Placement rule: start by placing connectors logically (USB at the edge, antenna away from noise, etc.), then place circuitry flowing inward from them.


  1. Clock Generators / Crystals

    • Critical because they are sensitive to noise and parasitics.

    • Placement rule: crystal should be next to MCU/IC pins, with load capacitors right there, traces as short and symmetric as possible.


🧭 How to Decide “Critical” in Your Examples:

  • Ask:

    1. What powers what? (power supply + decoupling is always critical)

    2. What is most sensitive to noise? (clocks, analog, RF, ADCs)

    3. What carries high current or switches fast? (FETs, regulators, motors, inductors)

    4. What fixes your placement boundary? (connectors, mounting holes)

Everything else (like LEDs, pull-up resistors, or low-speed GPIOs) is non-critical and can be placed more freely.