From 05034f925671f06abe15097326b05eceeef0bc1e Mon Sep 17 00:00:00 2001 From: Jimmy Date: Thu, 10 Dec 2020 17:16:38 +1300 Subject: [PATCH] Moved main.cpp to test folder --- makefile | 2 +- {src => test}/main.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename {src => test}/main.cpp (85%) diff --git a/makefile b/makefile index 661d854..cfdf81e 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 +SRCS= src/*.cpp test/main.cpp all: build flash diff --git a/src/main.cpp b/test/main.cpp similarity index 85% rename from src/main.cpp rename to test/main.cpp index 770521e..8d72b75 100644 --- a/src/main.cpp +++ b/test/main.cpp @@ -1,6 +1,6 @@ #include #include -#include "usart.h" +#include "../src/usart.h" #include