It is good to have fuses description for ATmega328p somewhere in docs. Spend whole day checking my build and trying to flash MCU with avrdude before realise: fuses should be sat the same way as for Arduino Duemilanove. Otherwise FW will start with wrong clock.
- Setting fuses:
avrdude -B 100 -V -p m328p -c usbasp -P usb -e -u -U lfuse:w:0xFF:m -U hfuse:w:0xDE:m -U efuse:w:0x05:m
- Flashing FW:
avrdude -B 20 -v -p m328p -c usbasp -P usb -b 57600 -D -U flash:w:arpie.ino.standard.hex:i
Great project btw. It was a joy to build. 👍
It is good to have fuses description for ATmega328p somewhere in docs. Spend whole day checking my build and trying to flash MCU with
avrdudebefore realise: fuses should be sat the same way as for Arduino Duemilanove. Otherwise FW will start with wrong clock.avrdude -B 100 -V -p m328p -c usbasp -P usb -e -u -U lfuse:w:0xFF:m -U hfuse:w:0xDE:m -U efuse:w:0x05:mavrdude -B 20 -v -p m328p -c usbasp -P usb -b 57600 -D -U flash:w:arpie.ino.standard.hex:iGreat project btw. It was a joy to build. 👍