Monday 5 October 2015

pcb - How to test for shorts on a breakout?



Working on LoRa project with the RFM95W. Most online resources like 1 and 2 suggest using a PCB since the module itself is quite small and hard to work with; but where's the fun (and learning) in that!


After soldering it looks like: (it isn't meant to be deployed, just testing it out on my workbench at the moment)


Please see photos:


Front Side


And the back side:


Back Side


To my untrained eye, they don't look like they would cause a short.


Googling brings up continuity testing, which would be proving the negative (no continuity means no shorting) but I am wondering if there's something better and what the procedure is like?


I do have this Multimeter.



Answer





  1. Clean the board with flux and let it shine

  2. use a good magnifying lens to visually check if there are any shorts, especially between two pins of the module

  3. Measure power supply pins with respect to ground to make sure there is no short waiting for first power on

  4. check the assembly BOM again once more to see that all the components required to be mounted are indeed mounted (and also, components that are not supposed to be mounted are left open)

  5. measure resistance values (you should be able to read approximately actual values, but not for all cases), at least they should not just read zero or Very less ohms..

  6. Multimeter is your friend. Check neighbor IC pins one by one. Pin4 can be short with pin 5 or pin 3.. so, that can be performed for all the pins.

  7. Check for diode polarity and capacitor polarity (if any)

  8. Repeat the same test for the connectors

  9. power on the board with current limited power supply



No comments:

Post a Comment

arduino - Can I use TI's cc2541 BLE as micro controller to perform operations/ processing instead of ATmega328P AU to save cost?

I am using arduino pro mini (which contains Atmega328p AU ) along with cc2541(HM-10) to process and transfer data over BLE to smartphone. I...