summaryrefslogtreecommitdiff
path: root/pcr-controller
diff options
context:
space:
mode:
authorChristian Pointner <equinox@spreadspace.org>2015-02-24 17:23:53 +0100
committerChristian Pointner <equinox@spreadspace.org>2015-02-24 17:23:53 +0100
commit0d8eee79a9eb4701f3100434f5d696d912f7816f (patch)
tree0e270775073f0859f36c1ae3c887bdb0c203d5c1 /pcr-controller
parentintroduced path variable for avr utilities path (diff)
added SPREADAVR_PATH variable to all examples
Diffstat (limited to 'pcr-controller')
-rw-r--r--pcr-controller/Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/pcr-controller/Makefile b/pcr-controller/Makefile
index 75aa477..821e590 100644
--- a/pcr-controller/Makefile
+++ b/pcr-controller/Makefile
@@ -25,10 +25,11 @@ BOARD_TYPE := teensy2
OBJ := $(NAME).o pwm.o pid_control.o temp_curve.o cmd_queue.o
LIBS := util led lufa-descriptor-usbserial anyio onewire ds1820
EXTERNAL_LIBS := lufa
-RESET_FUNC := ../tools/reset_lufa_cdc
+SPREADAVR_PATH := ..
+RESET_FUNC := $(SPREADAVR_PATH)/tools/reset_lufa_cdc
RESET_PARAM := 'R'
-LUFA_PATH := ../contrib/LUFA-120219
+LUFA_PATH := $(SPREADAVR_PATH)/contrib/LUFA-120219
LUFA_OPTS = -D USB_DEVICE_ONLY
LUFA_OPTS += -D DEVICE_STATE_AS_GPIOR=0
LUFA_OPTS += -D ORDERED_EP_CONFIG
@@ -43,4 +44,4 @@ LUFA_OPTS += -D USB_PRODUCT="L\"OLGA pcr-controller\"" -D USB_PRODUCT_LEN=19
LUFA_COMPONENTS := USB USBCLASS SERIAL
-include ../include.mk
+include $(SPREADAVR_PATH)/include.mk