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