Let's say you plug in your circuit, and something is wrong. It could be not working at all, or behaving in a way that you don't expect. There are issues you should ALWAYS check for before you even get out the multimeter. These may seem obvious, but it's better to start simply than troubleshoot more complex issues for hours just to find a silly mistake.
- Is power connected correctly? Connecting ground to a power connection and power to a ground connection (rather, positive to negative and negative to positive) can damage a device and will obviously not allow for proper behavior. Check for it. Even the most experienced professionals will do this from time to time.
- Are the components soldered correctly? If an LED isn't lighting up, maybe the orientation of the LED is incorrect. Is your square-shaped device soldered so that Pin 1 is where it's supposed to be? Check for this early. Performing hours of troubleshooting to finally discover that a chip is on backwards is about as frustrating as it gets.
- Are there solder jumpers/shorts on the board? Check your chips for solder jumpers between pins. A quick visual inspection can be worth hours of debugging good code.
- Are there bad solder joints? One bad solder joint can hork an entire circuit. Make sure they are all nice and shiny, and that the pins of a surface mount device are actually touching the pad on the board and not just floating above with solder on them.
- Is the board bad? This happens every now and then. Perform a continuity test between the VCC and Ground traces on the board. Rather than risk damaging your devices, make sure that the ground signals on the board are not shorting to VCC because of a board defect.
- Are your components the correct values? A perfectly soldered resistor is no good if it's not the correct value. Maybe you accidentally used the 12MHz clock instead of the 16MHz you meant to use.
Example question:
You have a circuit board with the circuit shown below. You power the device, and the LED lights up, but when you attempt to program the ATTiny, the programming fails. The ATTiny chip is soldered in the correct orientation. Which of the following should you do next?
A) Check the VCC and GND traces on the board for a short
B) Check that the 330 Ohm resistor is the correct value
C) Inspect the soldering of the chip for cold joints and jumpers
The LED is functioning properly, so you know that there is no short from VCC to GND on the board. The LED is lighting up, so the resistor is probably the correct value. The ATTiny is in the correct orientation, so if it's not programming, it's likely not soldered properly to the board. A single cold solder joint will cause bad connectivity and not allow programming. Check the board for "gray" (as in not shiny) solder joints, as this is usually indicative of an incorrectly soldered pin.
source : http://www.sparkfun.com/
No comments:
Post a Comment