From c9dc6e9948c3637056928eb2c65f6092986a785f Mon Sep 17 00:00:00 2001 From: jakeg00dwin Date: Wed, 22 May 2024 19:44:15 -0700 Subject: [PATCH] switched the F_CPU to 9.6MHz instead of 9.8MHz, according to datasheet 9.6MHz is the correct value --- makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/makefile b/makefile index 83b61e1..8eb45ea 100644 --- a/makefile +++ b/makefile @@ -7,10 +7,10 @@ # Compiler CC = avr-gcc -#Default cpu frequency is 9.8Mhz, 4.8 gives us less power consumption +#Default cpu frequency is 9.6Mhz, 4.8 gives us less power consumption #F_CPU = 1000000UL #F_CPU = 4800000UL -F_CPU = 9800000UL +F_CPU = 9600000UL MCU = attiny13a # Flags