Moved main.cpp to test folder

This commit is contained in:
Jimmy 2020-12-10 17:15:40 +13:00
parent 0030fef76e
commit 167b48703f
2 changed files with 3 additions and 3 deletions

View File

@ -8,7 +8,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
default: build flash
@ -28,4 +28,4 @@ debug: flash avarice
avr-gdb -ex "target remote :4242" bin/main.elf
avarice:
avarice --file bin/main.elf --part ${MCU} --${DEBUGGER} :4242
avarice --file bin/main.elf --part ${MCU} --${DEBUGGER} :4242

View File

@ -2,7 +2,7 @@
#include <avr/io.h>
#include <util/delay.h>
#include <avr/interrupt.h>
#include "photointerrupter.h"
#include "../src/photointerrupter.h"
int main()