It looks like you're new here. If you want to get involved, click one of these buttons!
i have been searching the net and trying, i still can't get the bootloader to go on the blank chip....I am usint the Diavolino as my ISP...i keep getting this for the last 2 chips i tried
avrdude: Expected signature for ATMEGA328P is 1E 95 0F
Double check chip, or use -F to override this check.
hope somebody can help...i am pulling my hair out
Comments
use -F to override this check
how do i over ride the chip?
i am using a atMega 328-PU
Hey Windell, thanks for all the help you gave early in the AM.....such an easy fix....just in case someone needs this
-----------------------------------------------------------------------------------------------------------------------------------------------------
In case anyone else has this problem (which by odd coincidence I had tonight), this is what I think the problem was and an easy solution:
If you have a 328-PU in place of the normal 328P it has a different signature byte. Functionally it's the same chip but AVRdude won't recognise it.
Easiest fix is to find your avrdude.conf file and in the entry under ATmega328, edit the line:
----------------------------------------------------------------------------------------------------------------------------------------------
Thanks Again
signature = 0x1e 0x95 0x0F;
to read:
signature = 0x1e 0x95 0x14;
The former is the sig for a 328P the latter for a 328.
Works like a charm after that.
Obviously you might want to edit it back again after.
Chris