I had no problem using such a format to include the fuse setting in the ELF file.
However, an error occurs in tiny1616.
Is this a deficiency in device definition?
Please tell me if there is a better form.
#include <avr/io.h> FUSES = { .WDTCFG = WINDOW_OFF_gc | PERIOD_OFF_gc, .BODCFG = LVL_BODLEVEL7_gc | SAMPFREQ_1KHZ_gc | ACTIVE_ENABLED_gc | SLEEP_SAMPLED_gc, .OSCCFG = FREQSEL_20MHZ_gc, // .TCD0CFG = // .SYSCFG0 = // .SYSCFG1 = // .APPEND = // .BOOTEND = }; int main(void){ while (1) {} }