comparison Makefile @ 24:2b0ed085b95b

- Change to 38400 baud. - Change to ATMega32 - Use interrupt driven serial comms (for rx anyway) - Reformat.
author darius
date Mon, 12 Dec 2005 23:37:16 +1030
parents 108a703c39e6
children e40e919721b0
comparison
equal deleted inserted replaced
23:845934a4e7fe 24:2b0ed085b95b
1 # 1 #
2 # $Id$ 2 # $Id$
3 # 3 #
4 4
5 PROG= testavr 5 PROG= testavr
6 SRCS= 1wire.c testavr.c 6 SRCS= 1wire.c testavr.c usb.c
7 7
8 MCU= at90s8515 8 MCU= atmega32
9 CFLAGS+=-Os -g -Wall -fno-inline-functions -fno-inline 9 PART= m32
10 CFLAGS+=-DXTAL_CPU=4000000 10 CFLAGS+=-O2 -g -Wall -Wunreachable-code
11 11 CFLAGS+=-DF_CPU=16000000
12 #CFLAGS+= -mcall-prologues -frename-registers -fstrict-aliasing -fnew-ra
12 .include "Makefile.avr" 13 .include "Makefile.avr"