Electrical – Preventing integrated circuits from receiving/causing EMI

batteriesclockdigital-logicemi-filteringshift-register

I have two almost-identical circuits:

circuit

Before continuing, I want to point out that I used three sets of jumpers for making logic selections to some of the pins. I know the better approach would be to use a pull-down or pull up resistor with a key, but my question isn't focused on those inputs.

I'm sharing the same power source with other circuits and if I don't use any EMI protection, then one IC in one connected circuit could screw up all other circuits relying on the same power source.

What I want to know is:

Which of these two circuits is recommended for best protection against EMI?
and if the answer is the first one, will I need to replace the wire located at the bottom-right of the big X with another RC filter?

Also, do the resistors that form the EMI protection network (resistors connected to +ve) need to be higher than 1/4 watt? I intend to make the values low enough (in ohms) so current can flow through but I don't want too low of values or I'll feel I'll make the EMI protection circuit useless.

Additional question

The reason why I considered resistors is because then each subcircuit can draw less power from the main battery, that way, there won't be any chance of components fighting for power.

Based on the answers, it is claimed that using any resistor for R1 and R3 increases EMI. I think there are two issues with shorting out those resistors. For one, I still want some sort of noise filtering, and also, It makes PCB routing more difficult.

Perhaps I should just hit ebay and buy axial ferrite beads. But wouldn't inductors in the uH be better to filter out bad frequencies? After all, they are very low resistance as well.

Best Answer

Neither...

Do not confuse signal filtering with power filtering.

Signal filtering is usually done on high impedance low current lines. You should not filter noise on a power line with an RC circuit when driving anything digital unless you TOTALLY understand your circuits current demand in the time domain. Even then, keep that resistor small.

Usually, for digital systems, a sufficient amount of carefully placed capacitance attached between Vcc and Ground is sufficient to reduce voltage spikes on to an acceptable level.

Additionally an in-line inductor can be added to the power line to limit current spikes. However, use the latter with caution. An inline inductor can in fact make things worse if your digital circuit is repetitively switching demand current levels current in a homogeneous manner rather than all the signals randomly. (Think Army Marching across a bridge.)

Further, if your Vcc supplies a high current load, like a relay, motor, bank of 1000 LEDs, that inductor will give you problems and may blow up some ICs.

As for emissions.

First, it depends on what "clocks" are running in your circuit. If your circuit is a simple logic board that gives an output based on some input condition or has a slow clock, emissions will not usually be a problem if you are not switching LARGE currents and voltages.

Obviously high frequency clocked boards will radiate that frequency as radio waves. That can be reduced by careful layout and ultimately shielding. However, even a relatively low frequency board will generate EMI.

The source of MOST digital noise is the rise time of the signals themselves. Digital circuits are designed, for obvious reasons, to switch their outputs as fast as their technology will allow.

However, in most applications, that switching speed will be overkill.

It is therefore common to see added resistors at the source of some of the busier digital signal lines, like clocks, address and data lines. The combination of this resistor and the capacitance of the PCB trace and input gates, forms a low-pass filter. This effectively reduces the rise time of the signal.. and with it.. the noise generated by that signal.

Unfortunately, this can leave the trace a little "floaty". Meaning it can be more susceptible to noise reception. If that's an issue you may need to filter the signal at both ends.

Any digital signals that leave the board via a connector and or wires should also be treated as above, but close to the connector. Even low frequency signals. Wires make wonderful antennas. That includes wires to motors, relays, sensors etc. too.

Any signal which enters a circuit from an external source through a wire or connector should be filtered for noise close to the connection point using a suitable RC filter. Additionally, when appropriate, other protection circuitry may be required like transorbs.

And the above is just the start. I did not even mention grounding, power planes, signal planes, antennas, trace resonance, shielding and the myriad of other things that affect a boards EM characteristics.

Related Topic