Cleaned up frequency settings, packet sniffer.
[goodfet] / firmware / Makefile
1
2 #include `uname`.mak
3 #GOODFET?=/dev/ttyUSB0
4
5
6 #For tos-bsl, use --invert-reset --invert-test
7 BSL?=goodfet.bsl --speed=38400
8
9
10 #One of these should be defined explicitly.
11 #Default removed because of confusion.
12
13 #mcu=msp430x2274
14 #mcu=msp430x2618
15 #mcu?=msp430x1612
16 mcu?=RUNCONFIG
17
18 #N.B., gcc WILL NOT BITCH if this file doesn't exist.
19 #GCCINC=-T ldscripts/161x.x
20 GCCINC=-T ldscripts/$(mcu).x
21
22 CCEXTRA?=
23 CC=msp430-gcc -Wall -Os -g -mmcu=$(mcu) -D$(mcu) -DGCC $(GCCINC) -I include $(CCEXTRA)
24
25 #Define extra modules here.
26 #moreapps?=apps/i2c/i2c.o  apps/glitch/glitch.o apps/jtag/sbw.o apps/smartcard/smartcard.o apps/jtag/ejtag.o apps/jtag/jtagxscale.o
27 moreapps?=apps/jtag/sbw.o
28 # should include apps/jtag/jtagarm7tdmi.o to build jtag for ARM7
29 # should include apps/pic/dspic33f.o to build support for PIC24H/dsPIC33F
30
31
32 apps= $(moreapps) apps/chipcon/chipcon.o apps/radios/nrf.o apps/monitor/monitor.o apps/spi/spi.o   apps/jtag/jtag.o apps/jtag/jtag430.o apps/jtag/jtag430x2.o apps/avr/avr.o 
33
34 #apps/chipcon/chipconasm.o removed
35 libs= lib/$(mcu).o lib/command.o apps/jtag/jtag430asm.o  lib/dco_calib.o
36
37 app= goodfet
38
39 all: $(app).hex
40
41 lib/.o:
42         ./configure
43         false
44 lib/RUNCONFIG.o:
45         ./configure
46         false
47
48 goodfet.hex: goodfet
49
50 run:
51         ../client/goodfet.msp430 test
52
53 install: $(app).hex
54         #$(BSL) -e
55         ls info.txt && $(BSL) -p info.txt || true  #MSP430F2xx targets only, inelegant.
56         $(BSL) -e -p $(app).hex 
57 verify:
58         $(BSL) -P $(app).hex -v $(app).hex
59 dumpinfo:
60         $(BSL) --dumpinfo
61 $(app): $(app).c $(libs) $(apps)
62 $(app).hex: $(app)
63         msp430-objcopy goodfet -O ihex goodfet.hex
64 m4s: $(app).hex
65         msp430-objdump -D -m msp430 $(app).hex | m4s init
66 erase:
67         $(BSL) -e 
68 clean:
69         rm -f $(app) $(app).hex $(libs) $(apps)
70 docs:
71         doxygen
72 pushdocs: docs
73         rsync --exclude .svn -ave ssh doc/html/* travisutk,goodfet@web.sourceforge.net:htdocs/docs/
74 .FAKE: docs