3

I am building a OBD-II reader and wonder if I should tie these two GND together. What is the pros and cons of doing that? My device is powered by car battery and it reads OBD-II protocols through OBD-II ports. Thanks.

placeholder
  • 29,982
  • 10
  • 63
  • 110
jsmith0910
  • 649
  • 1
  • 5
  • 15

4 Answers4

3

The two grounds come from different places. The signal ground comes from the PCM and the Chassis ground come from the body ground.

If there are grounding issues in the car such as poor grounds there may be a voltage across them. Jumping then together would then induce a current loop. Best case scenario nothing happens. Worst case scenario wires get melted.

Don't tie them together. Only use the chassis ground.

vini_i
  • 7,048
  • 3
  • 32
  • 49
  • Thanks vini. I looked at 3 other products in the market. They all tie both GND together, so I worry if there are reasons for that. – jsmith0910 Jun 09 '16 at 18:33
  • I believe signal ground comes from ECU. It is really not good idea to tie together "clean" communication ground and chassis, and even worse to use chassis ground only, when you have signal ground designed specifically for communication. – Maple May 02 '21 at 19:22
2

Depending on the ground configuration of the car you might not want to tie them together. On the other hand, if you don't, and you need both, then you need to consider what else to do with them. Grounding schemes always depend on the exact requirements for the system, which you have not listed.

The ground pins extend further than the signal pins, giving protection against ESD by mating first, so you should connect to at least one.

If you just need to use CAN for example, then include only the signal ground. The potential will likely be lower between signal pins and signal ground pin, compared to chassis ground pin.

If you need the battery voltage, then you're going to have to connect to the chassis ground.

Exact system specifications would help give more exact advice.

In any case, you should make sure your device does not connect to chassis ground through other paths than the connector, such as having a metal enclosure lying on the chassis.

To answer the pros and cons question specifically: Pro: Same ground reference across the board. Con: Risk of ground loop.

Edit: Since you do need both grounds, then you must tie then together somehow. Either with a solid connection right at the connector, so they become one ground om your PCB, and so that any potentional difference evens out close to the connector and not through a convoluted path on your PCB. The other option would be to isolate the communication lines and control the impendace between the grounds, but that seems like overkill for this project. Since you have noted that equipment manufacturers tie the grounds together, I would say that this is both the best and simplest way to go.

Jacob
  • 425
  • 2
  • 13
  • Thanks, Jacob. It seems to me that, in the end, I still need to tie them together on my PCB. My device is powered by the car battery and it reads CAN and other OBD-II protocols. Is that correct? – jsmith0910 Jun 09 '16 at 18:32
  • That's right. I have updated my answer to reflect the new information. – Jacob Jun 10 '16 at 19:27
  • @jsmith0910 Was the question answered to your satisfaction, or is there something left unclear? – Jacob Jun 26 '16 at 16:05
1

My advice would be to tie your electronics to signal ground only.

If you want to draw power from OBD connector, use isolated DC-DC powered from chassis ground and +12V.

If your device has its own power don't connect chassis ground at all.

Maple
  • 11,755
  • 2
  • 20
  • 56
0

If one is curious as to the voltage difference on the these two lines, you can measure them with reference to a chassis ground like a bare metal screw or bolt. Connect one lead of voltmeter to bare metal point, and the other (+) first to signal ground on the connector, and then to chassis ground on the connector. If this is large it will cause some ground- loop current inside the Car circuitry. Tie them together on the PCB it will keep the PCB free of loop currents.

Khalid
  • 1