You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
664 B
24 lines
664 B
# Board setup
|
|
BOARD_TAG = nano
|
|
BOARD_SUB = atmega328
|
|
|
|
# Use 'do_upload' target to upload software to arduino's flash.
|
|
# You need to set this variable correctly.
|
|
MONITOR_PORT ?= /dev/ttyUSB0
|
|
|
|
# LCD pins/pcb socket have been prepared, but software is lagging behind.
|
|
# Disabling until the situation changes.
|
|
#ARDUINO_LIBS = LiquidCrystal
|
|
|
|
# Libs for handling the Nema motor and the trigger swtiches.
|
|
ARDUINO_LIBS = StepperDriver Switch
|
|
|
|
# Points to submodule
|
|
ARDMK_DIR:=$(PWD)/Arduino-Makefile
|
|
|
|
# You may need to change this, depending on your local setup.
|
|
ARDUINO_DIR := $(HOME)/arduino/arduino-1.8.5
|
|
|
|
USER_LIB_PATH := $(PWD)
|
|
|
|
include $(ARDMK_DIR)/Arduino.mk
|
|
|