From 3c0ecdd98c2592f13d0036eeaff960adc92efe29 Mon Sep 17 00:00:00 2001 From: KenwoodFox Date: Wed, 30 Jun 2021 12:13:33 -0400 Subject: [PATCH] Create makefile though still with bugs --- crawler_software/arduino/Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 crawler_software/arduino/Makefile diff --git a/crawler_software/arduino/Makefile b/crawler_software/arduino/Makefile new file mode 100644 index 0000000..ea0c07b --- /dev/null +++ b/crawler_software/arduino/Makefile @@ -0,0 +1,13 @@ +# Uses arduin-mk, by Joe + +ROOT_DIR:=$(shell dirname $(realpath $(firstword $(MAKEFILE_LIST)))) + + +ARDUINO_DIR = /usr/share/arduino +ARDUINO_PORT = /dev/ttyAMCM* +BOARD_TAG = atmega328old #atmega328 or this? nano328 +USER_LIB_PATH = $(ROOT_DIR)/libraries +ARDUINO_LIBS = + + +include /usr/share/arduino/Arduino.mk