-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsplitflap.make
executable file
·33 lines (23 loc) · 1.01 KB
/
splitflap.make
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
PROJECT=splitflap
SOURCES=$(PROJECT).c usiTwiSlave.c
MMCU=attiny2313
CFLAGS=-mmcu=$(MMCU) -Wall -Os -DF_CPU=$(F_CPU)
$(PROJECT).hex: $(PROJECT).out
avr-objcopy -O ihex $(PROJECT).out $(PROJECT).c.hex;\
avr-size --mcu=$(MMCU) --format=avr $(PROJECT).out
$(PROJECT).out: $(SOURCES)
avr-gcc $(CFLAGS) -I./ -o $(PROJECT).out $(SOURCES)
program-bsd: $(PROJECT).hex
avrdude -p attiny2313 -c bsd -U flash:w:$(PROJECT).c.hex
program-dasa: $(PROJECT).hex
avrdude -p attiny2313 -P /dev/ttyUSB0 -c dasa -U flash:w:$(PROJECT).c.hex
program-avrisp2: $(PROJECT).hex
avrdude -p attiny2313 -P usb -c avrisp2 -U flash:w:$(PROJECT).c.hex
program-avrisp2-fuses: $(PROJECT).hex
avrdude -p attiny2313 -P usb -c avrisp2 -U lfuse:w:0x7E:m
program-usbtiny: $(PROJECT).hex
avrdude -p attiny2313 -P usb -c usbtiny -U flash:w:$(PROJECT).c.hex
program-usbtiny-fuses: $(PROJECT).hex
avrdude -p attiny2313 -P usb -c usbtiny -U lfuse:w:0x7E:m
program-dragon: $(PROJECT).hex
avrdude -p attiny2313 -P usb -c dragon_isp -U flash:w:$(PROJECT).c.hex