Hi
I`m stuck here with understanding how to change fuses on my ATMEGA328P-PU chip. It has a bootloader on board already.
So, what I need is to make chip to run on him self(without external crystal or resonator), i.e. with internal RC oscillator.
As far as I know from internet to make this happen I should make my arduino ISP-programmer, change file boards.txt and then burn the bootloader. I am right? When I trying this I get error message like this:
***failed;
avrdude: verification error, first mismatch at byte 0x0000
0xff != 0x07
avrdude: verification error; content mismatch
Freeborn_rus:
So, what I need is to make chip to run on him self(without external crystal or resonator), i.e. with internal RC oscillator.
As far as I know from internet to make this happen I should make my arduino ISP-programmer, change file boards.txt and then burn the bootloader. I am right?
Yes.
Freeborn_rus:
When I trying this I get error message like this:
***failed;
avrdude: verification error, first mismatch at byte 0x0000
0xff != 0x07
avrdude: verification error; content mismatch
What I am doing wrong?
If it's set up to need a clock then you have to provide one while you do "burn bootloader".
You can remove the clock when it's running on internal oscillator.
fungus:
If it's set up to need a clock then you have to provide one while you do "burn bootloader".
You can remove the clock when it's running on internal oscillator.
Thanks for the answer, but when I connect ATMEGA328P-PU with crystal oscillator(as it showed on the last picture of tutorial) I also get the same error.