Hello,
I have make a circuit to use AtMega2560 stand alone (attach you can see the schematic: ATMEGA2560_V10.jpg).
I use MCU: ATMEGA2560-16AU
Programmer: USBASP V2.0
In Arduino IDE 1.0.5 I set
- type arduino: "Arduino Mega 2560 or Mega ADK"
- programmer: "USBAsp"
When i load bootloader i have this response:
avrdude: verification error, first mismatch at byte 0x1e000
0xff != 0x0d
avrdude: verification error; content mismatch
I have tried to load a sketch:
int led = 13; //pin n.26 of AtMega2560
void setup() {
pinMode(led, OUTPUT);
}
void loop() {
digitalWrite(led, HIGH);
delay(1000);
digitalWrite(led, LOW);
delay(1000);
}
I dont have any error while loaded, but the led doesnt blink it is still off.
What is wrong, can any suggest me or some solution.
Thank you.
(I have also make another board with AtMega328P and i can load bootloader and It works fine)