Rev Author Line No. Line
3331 kaklik 1 # Name: Makefile
2 # Project: USB I2C
3 # Author: Christian Starkjohann, modified for I2C USB by Till Harbaum
4 # Creation Date: 2005-03-20
5 # Tabsize: 4
6 # Copyright: (c) 2005 by OBJECTIVE DEVELOPMENT Software GmbH
7 # License: Proprietary, free under certain conditions. See Documentation.
8 # This Revision: $Id: Makefile-avrusb.mega8,v 1.1 2006/12/03 21:28:59 harbaum Exp $
9  
10 SERIAL = `echo /dev/tty.[Uu][Ss]*`
11 UISP = uisp -dprog=stk200
12 # UISP = uisp -dprog=avr910 -dserial=$(SERIAL) -dpart=auto
13 # The two lines above are for "uisp" and the AVR910 serial programmer connected
14 # to a Keyspan USB to serial converter to a Mac running Mac OS X.
15 # Choose your favorite programmer and interface.
16  
17 DEFINES += -DDEBUG
18 DEFINES += -DDEBUG_LEVEL=1
19 COMPILE = avr-gcc -Wall -O2 -Iusbdrv -I. -mmcu=atmega8 $(DEFINES)
20  
21 OBJECTS = usbdrv/usbdrv.o usbdrv/usbdrvasm.o usbdrv/oddebug.o main.o
22  
23  
24 # symbolic targets:
25 all: firmware.hex
26  
27 .c.o:
28 $(COMPILE) -c $< -o $@
29  
30 .S.o:
31 $(COMPILE) -x assembler-with-cpp -c $< -o $@
32 # "-x assembler-with-cpp" should not be necessary since this is the default
33 # file type for the .S (with capital S) extension. However, upper case
34 # characters are not always preserved on Windows. To ensure WinAVR
35 # compatibility define the file type manually.
36  
37 .c.s:
38 $(COMPILE) -S $< -o $@
39  
40 # Fuse high byte:
41 # 0xc9 = 1 1 0 0 1 0 0 1 <-- BOOTRST (boot reset vector at 0x0000)
42 # ^ ^ ^ ^ ^ ^ ^------ BOOTSZ0
43 # | | | | | +-------- BOOTSZ1
44 # | | | | + --------- EESAVE (don't preserve EEPROM over chip erase)
45 # | | | +-------------- CKOPT (full output swing)
46 # | | +---------------- SPIEN (allow serial programming)
47 # | +------------------ WDTON (WDT not always on)
48 # +-------------------- RSTDISBL (reset pin is enabled)
49 # Fuse low byte:
50 # 0x9f = 1 0 0 1 1 1 1 1
51 # ^ ^ \ / \--+--/
52 # | | | +------- CKSEL 3..0 (external >8M crystal)
53 # | | +--------------- SUT 1..0 (crystal osc, BOD enabled)
54 # | +------------------ BODEN (BrownOut Detector enabled)
55 # +-------------------- BODLEVEL (2.7V)
56 fuse:
57 $(UISP) --wr_fuse_h=0xc9 --wr_fuse_l=0x9f
58  
59  
60 clean:
61 rm -f firmware.hex firmware.lst firmware.obj firmware.cof firmware.list firmware.map firmware.eep.hex firmware.bin *.o usbdrv/*.o firmware.s usbdrv/oddebug.s usbdrv/usbdrv.s
62  
63 # file targets:
64 firmware.bin: $(OBJECTS)
65 $(COMPILE) -o firmware.bin $(OBJECTS)
66  
67 firmware.hex: firmware.bin
68 rm -f firmware.hex firmware.eep.hex
69 avr-objcopy -j .text -j .data -O ihex firmware.bin firmware.hex
70 ./checksize firmware.bin 8192 960
71 # do the checksize script as our last action to allow successful compilation
72 # on Windows with WinAVR where the Unix commands will fail.
73  
74 program: firmware.hex
75 avrdude -c usbasp -p atmega8 -U lfuse:w:0x9f:m -U hfuse:w:0xc9:m -U flash:w:firmware.hex
76  
77 program-nodep:
78 avrdude -c usbasp -p atmega8 -U lfuse:w:0x9f:m -U hfuse:w:0xc9:m -U flash:w:firmware.hex
79  
80 disasm: firmware.bin
81 avr-objdump -d firmware.bin
82  
83 cpp:
84 $(COMPILE) -E main.c