- 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 |
rev |
line source |
14
|
1 #
|
|
2 # $Id$
|
|
3 #
|
0
|
4
|
14
|
5 PROG= testavr
|
24
|
6 SRCS= 1wire.c testavr.c usb.c
|
14
|
7
|
24
|
8 MCU= atmega32
|
|
9 PART= m32
|
|
10 CFLAGS+=-O2 -g -Wall -Wunreachable-code
|
|
11 CFLAGS+=-DF_CPU=16000000
|
|
12 #CFLAGS+= -mcall-prologues -frename-registers -fstrict-aliasing -fnew-ra
|
2
|
13 .include "Makefile.avr"
|