Hi,
I'm trying to burn a bootloader using arduino IDE on my ATMEGA328P SMD soldered on another board.
I use an Arduino Uno as programmer, it has been loaded with ArduinoISP sketch.
Wiring:
RESET: arduino pin D10 -> ICSP RESET PIN
MOSI: arduino pin D11 -> ICSP MOSI PIN
MISO: arduino pin D12 -> ICSP MISO PIN
SCK: arduino pin D13 -> ICSP SCK PIN
VCC: arduino 5V -> ICSP 5V
GND: arduino GND -> ICSP GND
Error
Arduino IDE gives me this error:
avrdude: Yikes! Invalid device signature.
Double check connections and try again, or use -F to override
AVRDUDE VERBOSE
C:\Program Files (x86)\Arduino\hardware\tools\avr\bin>avrdude -c arduino -P COM3
-p m328p -C "C:\Program Files (x86)\Arduino\hardware\tools\avr\etc\avrdude.con
" -b19200 -v -v -vavrdude: Version 6.0.1, compiled on Apr 15 2015 at 19:59:58
Copyright (c) 2000-2005 Brian Dean, http://www.bdmicro.com/
Copyright (c) 2007-2009 Joerg WunschSystem wide configuration file is "C:\Program Files (x86)\Arduino\hard
are\tools\avr\etc\avrdude.conf"Using Port : COM3
Using Programmer : arduino
Overriding Baud Rate : 19200
AVR Part : ATmega328P
Chip Erase delay : 9000 us
PAGEL : PD7
BS2 : PC2
RESET disposition : dedicated
RETRY pulse : SCK
serial program mode : yes
parallel program mode : yes
Timeout : 200
StabDelay : 100
CmdexeDelay : 25
SyncLoops : 32
ByteDelay : 0
PollIndex : 3
PollValue : 0x53
Memory Detail :Block Poll Page
Polled
Memory Type Mode Delay Size Indx Paged Size Size #Pages MinW Ma
W ReadBack
eeprom 65 20 4 0 no 1024 4 0 3600 3
00 0xff 0xff
Block Poll Page
Polled
Memory Type Mode Delay Size Indx Paged Size Size #Pages MinW Ma
W ReadBack
flash 65 6 128 0 yes 32768 128 256 4500 4
00 0xff 0xff
Block Poll Page
Polled
Memory Type Mode Delay Size Indx Paged Size Size #Pages MinW Ma
W ReadBack
lfuse 0 0 0 0 no 1 0 0 4500 4
00 0x00 0x00
Block Poll Page
Polled
Memory Type Mode Delay Size Indx Paged Size Size #Pages MinW Ma
W ReadBack
hfuse 0 0 0 0 no 1 0 0 4500 4
00 0x00 0x00
Block Poll Page
Polled
Memory Type Mode Delay Size Indx Paged Size Size #Pages MinW Ma
W ReadBack
efuse 0 0 0 0 no 1 0 0 4500 4
00 0x00 0x00
Block Poll Page
Polled
Memory Type Mode Delay Size Indx Paged Size Size #Pages MinW Ma
W ReadBack
lock 0 0 0 0 no 1 0 0 4500 4
00 0x00 0x00
Block Poll Page
Polled
Memory Type Mode Delay Size Indx Paged Size Size #Pages MinW Ma
W ReadBack
calibration 0 0 0 0 no 1 0 0 0
0 0x00 0x00
Block Poll Page
Polled
Memory Type Mode Delay Size Indx Paged Size Size #Pages MinW Ma
W ReadBack
signature 0 0 0 0 no 3 0 0 0
0 0x00 0x00Programmer Type : Arduino
Description : Arduino
Hardware Version: 2
Firmware Version: 1.18
Topcard : Unknown
Vtarget : 0.0 V
Varef : 0.0 V
Oscillator : Off
SCK period : 0.1 usavrdude: AVR device initialized and ready to accept instructions
Reading | ################################################## | 100% 0.01s
avrdude: Device signature = 0x000000 (retrying)
Reading | ################################################## | 100% 0.03s
avrdude: Device signature = 0x000000 (retrying)
Reading | ################################################## | 100% 0.03s
avrdude: Device signature = 0x000000
avrdude: Yikes! Invalid device signature.
Double check connections and try again, or use -F to override
this check.avrdude done. Thank you.
Signature is 0x000000 and I don't know why The microcontroller is connected to a 16mhz resonator and wiring seems correct to me.
I need your help
Thanks
EDIT: I forgot to say that RESET is working.