Have designed own board with separate ATMEGA328P-AU. So I need to upload the bootloader and be able to use the board in a similar way as an Arduino Mini Pro. However I am running into some issues and not found a solution
- Using an Arduino Pro Mini to program my own board (Arduino as ISP -> burn bootloader)
- When burning the bootloader I get the following message:
***failed;
avrdude: WARNING: invalid value for unused bits in fuse "efuse", should be set to 1 according to datasheet
This behaviour is deprecated and will result in an error in future version
You probably want to use 0xfd instead of 0x05 (double check with your datasheet first).
avrdude: verification error, first mismatch at byte 0x782e
0x41 != 0x51
avrdude: verification error; content mismatch
1> Would like to change the extended_fuses to 0xfd. However I changed it in boards.txt but I still get the same warning as above --> SOLVED: boards.txt is stored on multiple places / I edited the wrong one :-|. The verification errors remain.
2> Any suggestions where the verification error is coming from and how to solve it?
Thanks,
Buffel