forked from 3drobotics/solo-esc-simonk
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Makefile
75 lines (51 loc) · 2.29 KB
/
Makefile
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# This Makefile is compatible with both BSD and GNU make
ASM?= avra
SHELL = /bin/bash
.SUFFIXES: .inc .hex
ALL_TARGETS = afro.hex afro2.hex afro_hv.hex afro_nfet.hex arctictiger.hex birdie70a.hex bs_nfet.hex bs.hex bs40a.hex dlu40a.hex dlux.hex hk200a.hex hm135a.hex kda.hex mkblctrl1.hex rb50a.hex rb70a.hex rct50a.hex tbs.hex tp.hex tp_8khz.hex tp_i2c.hex tp_nfet.hex tp70a.hex tgy6a.hex tgy.hex
AUX_TARGETS = diy0.hex
all: $(ALL_TARGETS)
$(ALL_TARGETS): tgy.asm boot.inc
$(AUX_TARGETS): tgy.asm boot.inc
.inc.hex:
@test -e $*.asm || ln -s tgy.asm $*.asm
@echo "$(ASM) -fI -o $@ -D $*_esc -e $*.eeprom -d $*.obj $*.asm"
@set -o pipefail; $(ASM) -fI -o $@ -D $*_esc -e $*.eeprom -d $*.obj $*.asm 2>&1 | sed '/PRAGMA directives currently ignored/d'
@test -L $*.asm && rm -f $*.asm || true
test: all
clean:
-rm -f $(ALL_TARGETS) *.obj *.eep.hex *.eeprom
program_solo: all
avrdude -c avrispmkII -p m8 -U flash:w:bs_nfet.hex:i
avrdude -c avrispmkII -p m8 -U lfuse:w:0x3f:m -U hfuse:w:0xd7:m
binary_zip: $(ALL_TARGETS)
TARGET="tgy_`date '+%Y-%m-%d'`_`git rev-parse --verify --short HEAD`.zip"; \
git archive -9 -o "$$TARGET" HEAD && \
zip -9 "$$TARGET" $(ALL_TARGETS) && ls -l "$$TARGET"
program_tgy_%: %.hex
avrdude -c stk500v2 -b 9600 -P /dev/ttyUSB0 -u -p m8 -U flash:w:$<:i
program_usbasp_%: %.hex
avrdude -c usbasp -B.5 -p m8 -U flash:w:$<:i
program_avrisp2_%: %.hex
avrdude -c avrisp2 -p m8 -U flash:w:$<:i
program_dragon_%: %.hex
avrdude -c dragon_isp -p m8 -P usb -U flash:w:$<:i
program_dapa_%: %.hex
avrdude -c dapa -p m8 -U flash:w:$<:i
program_uisp_%: %.hex
uisp -dprog=dapa --erase --upload --verify -v if=$<
bootload_usbasp:
avrdude -c usbasp -u -p m8 -U hfuse:w:`avrdude -c usbasp -u -p m8 -U hfuse:r:-:h | sed -n '/^0x/{s/.$$/a/;p}'`:m
read: read_tgy
read_tgy:
avrdude -c stk500v2 -b 9600 -P /dev/ttyUSB0 -u -p m8 -U flash:r:flash.hex:i -U eeprom:r:eeprom.hex:i
read_usbasp:
avrdude -c usbasp -u -p m8 -U flash:r:flash.hex:i -U eeprom:r:eeprom.hex:i
read_avrisp2:
avrdude -c avrisp2 -p m8 -P usb -v -U flash:r:flash.hex:i -U eeprom:r:eeprom.hex:i
read_dragon:
avrdude -c dragon_isp -p m8 -P usb -v -U flash:r:flash.hex:i -U eeprom:r:eeprom.hex:i
read_dapa:
avrdude -c dapa -p m8 -v -U flash:r:flash.hex:i -U eeprom:r:eeprom.hex:i
read_uisp:
uisp -dprog=dapa --download -v of=flash.hex