Moved main.cpp to test folder

This commit is contained in:
Jimmy 2020-12-10 17:16:38 +13:00
parent 9931aaf299
commit 05034f9256
2 changed files with 2 additions and 2 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
SRCS= src/*.cpp test/main.cpp
all: build flash

View File

@ -1,6 +1,6 @@
#include <avr/io.h>
#include <avr/interrupt.h>
#include "usart.h"
#include "../src/usart.h"
#include <util/delay.h>