File: Makefile

package info (click to toggle)
arduino-mk 1.5.2-2.1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, forky, sid, trixie
  • size: 456 kB
  • sloc: sh: 292; ansic: 113; makefile: 67; python: 40
file content (20 lines) | stat: -rw-r--r-- 648 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# 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/

# !!! Important. You have to use "make ispload" to upload when using ISP programmer
ISP_PROG = usbasp

# 1.5+ example of submenu cpu
BOARD_TAG    = attiny
BOARD_SUB    = attiny85

# clock is a submenu too
F_CPU        = 16000000L

ARDUINO_LIBS = SoftwareSerial

include /usr/share/arduino/Arduino.mk