switched the F_CPU to 9.6MHz instead of 9.8MHz, according to datasheet 9.6MHz is the correct value
This commit is contained in:
parent
34778b7e04
commit
c9dc6e9948
4
makefile
4
makefile
|
@ -7,10 +7,10 @@
|
||||||
# Compiler
|
# Compiler
|
||||||
CC = avr-gcc
|
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 = 1000000UL
|
||||||
#F_CPU = 4800000UL
|
#F_CPU = 4800000UL
|
||||||
F_CPU = 9800000UL
|
F_CPU = 9600000UL
|
||||||
MCU = attiny13a
|
MCU = attiny13a
|
||||||
|
|
||||||
# Flags
|
# Flags
|
||||||
|
|
Loading…
Reference in New Issue