From eea8c015c0ea53c50aeb0fca7110cdbf122b8a63 Mon Sep 17 00:00:00 2001 From: Leon Krieg Date: Wed, 2 Oct 2024 19:38:51 +0200 Subject: [PATCH] Use external 18.432 MHz crystal oscillator with full swing fuse settings --- Makefile | 4 ++-- docs/TODO.md | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 4137362..aa972fe 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ VERBOSE := false ARCH := m1284 MCU := atmega1284p -FREQ := 8000000UL +FREQ := 18432000UL ISP := usbasp CC := avr-gcc LD := $(CC) @@ -22,7 +22,7 @@ MKDIR := mkdir -p RMR := rm -rf GIT := git -LFUSE := 0xC2 +LFUSE := 0xF7 HFUSE := 0x97 EFUSE := 0xFF LOCK := 0xFF diff --git a/docs/TODO.md b/docs/TODO.md index 6122dfc..6688fe4 100644 --- a/docs/TODO.md +++ b/docs/TODO.md @@ -1,6 +1,5 @@ ## Current Tasks -- Test stability with 18.432 MHz external oscillator. - Implement state machine for actual drying operation. - Rewrite code documentation with proper structure. - Check sensor measurements, conversion results and timer output frequencies.