2013-06-22 12:05:01 +02:00
|
|
|
# Arduino Make file. Refer to https://github.com/sudar/Arduino-Makefile
|
|
|
|
|
2014-01-28 15:27:01 +01:00
|
|
|
# if you have placed the alternate core in your sketchbook directory, then you can just mention the core name alone.
|
2013-06-23 09:38:06 +02:00
|
|
|
ALTERNATE_CORE = attiny
|
|
|
|
# If not, you might have to include the full path.
|
|
|
|
#ALTERNATE_CORE_PATH = /home/sudar/Dropbox/code/arduino-sketches/hardware/attiny/
|
|
|
|
|
2015-05-15 19:09:00 +02:00
|
|
|
# !!! Important. You have to use "make ispload" to upload when using ISP programmer
|
|
|
|
ISP_PROG = usbasp
|
2013-06-22 12:05:01 +02:00
|
|
|
|
2015-05-15 19:09:00 +02:00
|
|
|
# 1.5+ example of submenu cpu
|
|
|
|
BOARD_TAG = attiny
|
|
|
|
BOARD_SUB = attiny85
|
|
|
|
|
|
|
|
# clock is a submenu too
|
|
|
|
F_CPU = 16000000L
|
2013-06-22 12:05:01 +02:00
|
|
|
|
2015-05-15 19:09:00 +02:00
|
|
|
ARDUINO_LIBS = SoftwareSerial
|
2013-06-22 12:05:01 +02:00
|
|
|
|
2020-04-12 14:19:41 +02:00
|
|
|
include $(ARDMK_DIR)/Arduino.mk
|