2
\$\begingroup\$

I'm currently working for a company where I design and implement an automated test program to test our products. Currently our tests take quite a bit of time (several minutes per unit) and need to optimize it in the future as the volume will increase (1000+). The tests take that long as the product is quite advanced with many feature that needs time to be evaluated properly (GSM/3G/GPS/Battery charging etc).

We use a PC application that loads the a special test firmware into the device and performs various measurements; While the test firmware communicates with and tests all on board chips and their functionary one step at a time as the PC application controls it via a USB terminal interface.

Our current thoughts are to:

  • Have test pads underneath the boards so that the operator doesn't need to plug in/out any cables during the PCB test. Just place it on a bed of needles

  • Perhaps parallelize the system to test several objects at a time

Me and the others at our company are not very familiar with how to do things other than low--volume tests. So I ask for advice from you experience people on what the proper way to do medium/high-volume tests of a fairly complex product?

Thanks for your time, Kind regards

\$\endgroup\$
1
  • \$\begingroup\$ Your medium/high volume is 1000 per day? Per batch? How many per month? \$\endgroup\$ Commented Jun 7, 2015 at 13:26

1 Answer 1

3
\$\begingroup\$

My thoughts about high volume testing:

  • Minimize operator interaction with the test object. Preferably place a number of test objects in a test bed, push a button, wait for OK/FAIL then remove the faulty test objects for investigation at another station. Never keep the line halted because of a faulty test object.
  • If the operator needs to put in serial numbers or other manual entries, use pre-defined barcodes with a scanner if possible. This will minimize the human errors.
  • Bed of nails are fine in high volume production tests. At lest if your PCB is reasonably sized for a multi PCB fixture. One great advantage of test points compared to a test connector is that you don't need to route sensitive signals all over the board. On the other hand, sometimes you can't do without a connector because of board space or signal integrity issues.
  • If you need to have connectors attached somewhere to the test object, make sure that the ones on the test equipment are on adapter boards or with cables that can be easily replaced as they wear out. You might even need a counter in the test software to keep track of usage and maintenance schedule.
  • Make thorough analysis of how much time each test step takes, try to find steps that can be done in parallel. As an example,you might find that programming a firmware takes a long time but the analog and digital measurements are done fast. Then you might want to make a large parallel programming test station but use low capacity station for the measurents. That way you will free up expensive measurement equipment and keep the flow going even if a few units fail at programming.
  • Make use of automated vision inspection systems to catch the first errors coming out of the manufacturing. Time spent on testing a PCB that was missing a resistor is waste...
  • Setup a database for handling the output of the test equipment. It is much more convenient to analyse a large amount of test data from a database than from a pile of text files.
  • On PCB's with lots of advanced digital components you might want to consider boundary scan testing. Unfortunately the price for equipment and software for performing boundary scan tests can be high. You have to weigh it compared to having products failing in the field.
\$\endgroup\$
0

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