Tell me more ×
Electrical Engineering Stack Exchange is a question and answer site for electronics and electrical engineering professionals, students, and enthusiasts. It's 100% free, no registration required.

I've been studying the Arduino Uno layout and noticed that there are about 40 vias that connect the GND polygons on the top and bottom. Here's a picture with the vias circled:

enter image description here

Is this a standard practice? I'm a hobbyist and a novice when it comes to PCB design, but I've never seen this before..

share|improve this question

3 Answers

up vote 10 down vote accepted

It's called stitching. You want your copper pours (polygons) to be well connected. Any non-connected islands are referred to as "dead copper" and should be removed.

Arduino example is a rather moderate one. On multilayer boards, you can have hundreds of stitching vias.

share|improve this answer
Wow, I had no idea. Thanks for your answer! – Nate Mar 19 '12 at 1:09

It ensures that the copper pour areas can't become unintentional radiators, which would be bad from an EMC point of view.

share|improve this answer
1  
Curious: How exactly is it the vias prevent this from happening? – boardbite Sep 13 '12 at 18:21

Yes, it is standard. A PCB usually has an even number of layers, so if you have a spare layer around, it never hurts to have another ground. I have also seen a ground layer for every 2-3 routing layers to help reduce crosstalk. Another thing I've done in the past with very high speed differential pairs is to have them sandwiched with a ground layer above and below to help reduce interference from any other clocks in the area.

share|improve this answer
1  
"it never hurts to have another ground" is false. If you are dealing with very small signals, all these additional grounds introduce capacitance which changes the behavior of your circuit. – Ktc Mar 18 '12 at 4:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.