diff --git a/firmware/rust/Makefile.toml b/firmware/rust/Makefile.toml index 59d36fa..e47cb7d 100644 --- a/firmware/rust/Makefile.toml +++ b/firmware/rust/Makefile.toml @@ -39,3 +39,7 @@ args = ["-p", "${MCU}", "-c", "${PROGRAMMER}", "-U", "eeprom:w:target/avr-atmega description = "Burn the fuses" command = "avrdude" args = ["-p", "${MCU}", "-c", "${PROGRAMMER}", "-U", "efuse:w:${EXTENDED_FUSE}:m", "-U", "hfuse:w:${HIGH_FUSE}:m", "-U", "lfuse:w:${LOW_FUSE}:m"] + +[tasks.all] +description = "Execute all tasks" +run_task = { name = ["fuses", "eeprom", "flash"] }