Check these against the Fuse description in the Memory Programming section http://www.atmel.com/Images/doc2467.pdf
pages 287-288-289
Make sure the fuse settings are compatible with your hardware setup, which you haven't really described.
CrossRoads:
crumbuino128.build.f_cpu=16000000L
vs #define F_CPU 8000000UL
this is mistake. I use only crumbuino128.build.f_cpu=16000000L.
My hardware you can see on picture down.
I use only pure ATmega128A AU with external crystal 16MHZ
I don't need bootloader. Is it necessary for me when I don't use bootloader?
My next configuration will may be:
but not function led blink as example on ARDUINO IDE.
int led = 39;
// the setup routine runs once when you press reset:
void setup() {
// initialize the digital pin as an output.
pinMode(led, OUTPUT);
}
// the loop routine runs over and over again forever:
void loop() {
digitalWrite(led, HIGH); // turn the LED on (HIGH is the voltage level)
delay(1000); // wait for a second
digitalWrite(led, LOW); // turn the LED off by making the voltage LOW
delay(1000); // wait for a second
}
HI everybody!
I solved this problem.
Over avr8-burn-o-mat I am check at fuses section in FUSE HEX editor if i have same set of hfuse,lfuse,efuse as in boards.txt in bootloader.
I not need to use bootloader pre mna that im am not write it in boards.txt it.