forked from emukidid/xenogcfork
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile-avrdude
28 lines (22 loc) · 976 Bytes
/
Makefile-avrdude
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
###########################################################################################
###########################################################################################
# Makefile AVRDUDE
###########################################################################################
###########################################################################################
# USER DEFINE VARIABLES
#
# AVR = Target AVR type < M8 = Atmega8 >
# TARGET = Target File
# AVRDUDE = Path to AVRDUDE
# DEVICE = Programmer Type < stk500, ponyser, avrisp2, etc, etc >
# PORT = Programmer Port < /dev/ttyS0, com1, LPT1 >
#
#
AVR = m8
TARGET = XenoAT
AVRDUDE = /usr/bin/avrdude
DEVICE = ponyser
PORT = /dev/ttyS0
FLAGS = -p $(AVR) -c $(DEVICE) -P $(PORT)
###########################################################################################
###########################################################################################