Add usart lib

This commit is contained in:
CVR 2021-09-09 12:27:24 +12:00
parent 7e5acdd896
commit 56c244883b
1 changed files with 1 additions and 1 deletions

View File

@ -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