diff options
author | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2007-04-13 05:28:23 +0000 |
---|---|---|
committer | Hans-Christoph Steiner <eighthave@users.sourceforge.net> | 2007-04-13 05:28:23 +0000 |
commit | a4d9715d0c6954c71b26ee11ade23cd0edfce4d8 (patch) | |
tree | 740e78e29f99cce4f8797d60f4e364ffd65a1140 /Pd_firmware/Makefile | |
parent | 851f439038566e73bf77baec4e50ade1e5c0ef15 (diff) |
first working bits of the Firmata class, just sending analog and digital messages from the Arduino to the host software, plus printing the version
svn path=/trunk/externals/hardware/arduino/; revision=7559
Diffstat (limited to 'Pd_firmware/Makefile')
-rw-r--r-- | Pd_firmware/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Pd_firmware/Makefile b/Pd_firmware/Makefile index 82af842..3d1aaa6 100644 --- a/Pd_firmware/Makefile +++ b/Pd_firmware/Makefile @@ -43,7 +43,7 @@ # 7. Type "make upload", reset your Arduino board, and press enter to # upload your program to the Arduino board. # -# $Id: Makefile,v 1.6 2007-04-13 03:55:16 eighthave Exp $ +# $Id: Makefile,v 1.7 2007-04-13 05:28:23 eighthave Exp $ PORT = /dev/tty.usbserial-* TARGET = Pd_firmware @@ -52,11 +52,13 @@ ARDUINO_SRC = $(ARDUINO)/lib/targets/arduino ARDUINO_LIB_SRC = $(ARDUINO)/lib/targets/libraries INCLUDE = -I$(ARDUINO_SRC) -I$(ARDUINO)/tools/avr/avr/include \ -I$(ARDUINO)/lib/targets/libraries/EEPROM \ + -I$(ARDUINO)/lib/targets/libraries/Firmata \ -I$(ARDUINO)/lib/targets/libraries SRC = $(ARDUINO_SRC)/pins_arduino.c $(ARDUINO_SRC)/wiring.c \ $(ARDUINO_SRC)/WInterrupts.c CXXSRC = applet/$(TARGET).cpp $(ARDUINO_SRC)/HardwareSerial.cpp \ $(ARDUINO_LIB_SRC)/EEPROM/EEPROM.cpp \ + $(ARDUINO_LIB_SRC)/Firmata/Firmata.cpp \ $(ARDUINO_SRC)/WRandom.cpp MCU = atmega8 F_CPU = 16000000 |