Everytime I debug my XMEGA project, I get a message:
"The device's EESAVE fuse is currently programmed, but the project settings does not specify that EEPROM should be preserved. Would you like to preserve the device's EEPROM during programming?"
I hit yes, then I get this message:
"The object file indicates initialized EEPROM data. Do you want to load this data?"
I want to skip both theses messages. How do I set the fuses in the project settings? I tried setting the fuses in the source code:
FUSES = { .byte[5] = FUSE_EESAVE, };
And didn't work, by the way, is that the correct way of setting the fuses in the code?
Thanks.