aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/ATtinyBlink/Makefile7
-rw-r--r--examples/TinySoftWareSerial/Makefile7
2 files changed, 10 insertions, 4 deletions
diff --git a/examples/ATtinyBlink/Makefile b/examples/ATtinyBlink/Makefile
index a851ad8..12d4a1f 100644
--- a/examples/ATtinyBlink/Makefile
+++ b/examples/ATtinyBlink/Makefile
@@ -1,8 +1,11 @@
# 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
-ARDUINO_VAR_PATH = /home/sudar/Dropbox/code/arduino-sketches/hardware/attiny/variants
-BOARDS_TXT = /home/sudar/Dropbox/code/arduino-sketches/hardware/attiny/boards.txt
ISP_PORT = /dev/ttyACM*
include $(ARDMK_DIR)/arduino-mk/Arduino.mk
diff --git a/examples/TinySoftWareSerial/Makefile b/examples/TinySoftWareSerial/Makefile
index b68f08d..0f9c6e2 100644
--- a/examples/TinySoftWareSerial/Makefile
+++ b/examples/TinySoftWareSerial/Makefile
@@ -1,8 +1,11 @@
# 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
-ARDUINO_VAR_PATH = /home/sudar/Dropbox/code/arduino-sketches/hardware/attiny/variants
-BOARDS_TXT = /home/sudar/Dropbox/code/arduino-sketches/hardware/attiny/boards.txt
ISP_PORT = /dev/ttyACM*
ARDUINO_LIBS = SoftwareSerial