From 598540c9d9bedb89d323f60d56c1be7cc62f446c Mon Sep 17 00:00:00 2001 From: Leon Krieg Date: Tue, 1 Oct 2024 05:31:54 +0200 Subject: [PATCH] Skip bootloader and use internal oscillator without CKDIV8 --- Makefile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index a48e271..871de73 100644 --- a/Makefile +++ b/Makefile @@ -57,8 +57,10 @@ flash: $(TARGET) $(E) "[AVD] Flashing..." $(Q) $(AVD) -l $(LOGFILE) \ -c $(ASP) -p $(ARCH) \ - -U lfuse:w:0xFF:m \ - -U hfuse:w:0xD2:m \ + -U lfuse:w:0xC2:m \ + -U hfuse:w:0x9F:m \ + -U efuse:w:0xFF:m \ + -U lock:w:0xFF:m \ -U flash:w:$< .PHONY: clean