Mercurial > ~darius > hgwebdir.cgi > avr
view Makefile.avr @ 60:50fca9562310
Add support for reading/writing to a DS1307 over TWI/IIC.
Note that iic_read() appears to have a bug where it stops 1 byte earlier than
expected, work around it for now by adding 1 in the gettod() function.
tempctrl.c now prints the TOD as read from the RTC for each line.
author | darius@Inchoate |
---|---|
date | Thu, 30 Oct 2008 11:53:32 +1030 |
parents | 2b8278ec5adb |
children |
line wrap: on
line source
# # $Id$ # .SUFFIXES: .hex .out .c .o .elf .dmp .s # Otherwise we get -march=foo NO_CPU_CFLAGS= _CPUCFLAGS= # Programs AS=avr-as CC=avr-gcc OBJCOPY=avr-objcopy OBJDUMP=avr-objdump CPPFLAGS+=-Wa,-adhlmsn=${<:S/.c/.lst/} MCU?=at90s8515 CFLAGS+=-mmcu=${MCU} LDFLAGS+=-Wl,-Map=${PROG}.map,--cref LDFLAGS+=${LDADD} RM=rm -f PROGRAMMER=avrdude PROGOPTS?=-p ${PART} -c alf -E vcc,noreset -q .if !defined(SRCS) SRCS= ${PROG}.c .endif OBJS+= ${SRCS:N*.h:R:S/$/.o/g} all: ${PROG}.hex ${PROG}.dmp .c.o: ${CC} ${CFLAGS} ${CPPFLAGS} -c ${.IMPSRC} -o ${.PREFIX}.o ${PROG}.elf: ${OBJS} ${CC} ${CFLAGS} ${LDFLAGS} -g ${OBJS} -o ${PROG}.elf ${LDADD} .elf.hex: ${OBJCOPY} -j .text -j .data -j .bss -j .noinit -O ihex $> $@ .elf.dmp: ${OBJDUMP} -S ${.IMPSRC} > ${.PREFIX}.dmp clean: ${RM} ${PROG}.hex ${PROG}.out ${PROG}.elf ${PROG}.map ${OBJS} ${OBJS:S/.o/.lst/} ${PROG}.dmp prog: all ${PROGRAMMER} -U flash:w:${PROG}.hex ${PROGOPTS}