2

I'm designing a circuit for doing EEG measurements and I want it to be very compact. As a result, the WiFI+Bluetooth antenna (2.4GHz) will be sitting half an inch above the electrode inputs. Will this cause EMI issues? The raw EEG signals are very small (1-10uV).

I thought about adding a bypass capacitor (22pF) on each electrode input to pass 2.4GHz signals to ground, but I'm not sure if this is necessary (or if it would even work properly).

z470
  • 121
  • 1
  • Look into the datasheet of the amplifier you use for the EEG signals about the response to very high frequency signals. – Uwe Aug 23 '19 at 16:08
  • 1
    One potential concern in a system such as this is that the *packet duration* of the radio systems may start to fall at frequencies of interest. While you can filter out RF energy, anything that gets demodulated ahead of your filter is a problem, because it then has energy at low frequency. What can demodulate? Diodes, intentional or not. What is an unintentional diode? Perhaps some metal in contact with something salty... – Chris Stratton Aug 30 '19 at 18:59
  • I agree with @ChrisStratton. Your biggest enemy will be rectification. You have to make sure that you have proper filtering on the signal coming from the leads to killl any RF. Then you have to have very good shielding around your pre-amp circuitry to make sure RF doesn't get there directly. – joribama Aug 30 '19 at 22:02

2 Answers2

1

That largely depends on the exact chips involved and the physical layout and properties of your EEG circuit.

That said, if you are mainly worried about EMI due to proximity, adding a sheet of copper (or aluminum, although it doesn't work quite as well) foil tied to ground between the EEG part of the circuit and the transceiver can do a lot to reduce any interference.

This technique is used a lot in sensitive physics experiments. For example, when doing experiments with wave-particle duality for particles of non-negligible mass, basically all wires and equipment in the room will be wrapped in foil to prevent interference.

Side note: Unless I'm mistaken, most of the features of interest in an EEG are below a hundred Hz, so a low pass filter (such as the capacitor you mentioned) would probably work as well. To that end, when you are designing the boards, if you leave a spot for the capacitor, you can try it with and without and see if there is a difference. It's pretty common for initial prototypes to have extra components in the design that don't actually get installed during assembly - just in case you want to install it later.

Edit: If ground contamination is a concern, you have a few options.

The simplest option from a component perspective is to use a split ground. Essentially, you have two separate grounds that are connected through a large number of narrow traces. This allows DC to flow, while attenuating high frequency noise at the boundary.

Another option (one used extensively in ECG/EKG circuits) is a form of active ground compensation. This entails using a feedback loop to force your ground plane to be zero. This is essentially noise cancelling for your ground plane. Unfortunately in this case, you need an amplifier that can operate pretty significantly faster than your expected noise frequency.

A third option is to maintain two fully separate grounds, and allow the two subsystems to communicate through an isolated channel (opto-isolators, isolation transformers, etc.). The reason the data channels need to be isolated if your grounds aren't connected is that they won't have a common reference point, so at best it won't work and at worst you'll mangle your data or fry something.

Finally, you can put a filter in line with the ground line of your transmitter. This could be a very small value inductor in series with ground, and/or a collection of bypass capacitors.

Kyle
  • 51
  • 3
  • With respect to the side note, the issue would be high frequency noise on the ground plane aliasing down to the frequencies of interest. A simple filter might not help, if the ground is contaminated. – Scott Seidman Aug 23 '19 at 17:33
0

You need something like this

schematic

simulate this circuit – Schematic created using CircuitLab

analogsystemsrf
  • 33,703
  • 2
  • 18
  • 46