From 56c244883b4bfc6431d094f483961c06d6587c5c Mon Sep 17 00:00:00 2001 From: CVR Date: Thu, 9 Sep 2021 12:27:24 +1200 Subject: [PATCH] Add usart lib --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index 4236de6..66757de 100644 --- a/makefile +++ b/makefile @@ -6,7 +6,7 @@ CC=avr-g++ OBJCOPY=avr-objcopy CFLAGS=-Wall -g -mmcu=${MCU} -DF_CPU=${F_CPU} -I. TARGET=main -SRCS= src/*.cpp $(wildcard lib/*/src/*.cpp) +SRCS= $(wildcard src/*.cpp) test/usart.cpp all: build flash