c86ce093ce
* Added script/boostrap.sh to download the Arduino IDE and MPIDE (for chipKIT). Tested in Linux, should work in Cygwin and OS X too. * Added script/runtests.sh to run "make" in each example project and collect the results. The script returns -1 if any fails. * Moved currently testable examples to a "tests" directory, separate from examples that require alternative cores.
13 lines
514 B
Makefile
13 lines
514 B
Makefile
# Arduino Make file. Refer to https://github.com/sudar/Arduino-Makefile
|
|
|
|
# if you have placed the alternate core in your sketchbook directory, then you can just mention the core name alone.
|
|
ALTERNATE_CORE = attiny
|
|
# If not, you might have to include the full path.
|
|
#ALTERNATE_CORE_PATH = /home/sudar/Dropbox/code/arduino-sketches/hardware/attiny/
|
|
|
|
BOARD_TAG = attiny85-8
|
|
ISP_PORT = /dev/ttyACM*
|
|
|
|
include $(ARDMK_DIR)/Arduino.mk
|
|
|
|
# !!! Important. You have to use make ispload to upload when using ISP programmer
|