You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Datasheet states (Atmel-42735B-ATmega328/P_Datasheet_Complete-11/2016, chapter 31, page 347), that lock bits 6 and 7 are unused and by default value is 1. Avrdude cant verify them after programming to 0, because they can't be programmed:
avrdude: verification error, first mismatch at byte 0x0000
0xff != 0x3f
wrong, not working, default values:
uno.bootloader.unlock_bits=0x3F
uno.bootloader.lock_bits=0x0F
correct, working ones:
uno.bootloader.unlock_bits=0xFF
uno.bootloader.lock_bits=0xCF