view target-utils/pirexplore/Makefile @ 853:ae254ffeaec3

AT command interface works! The cause of the breakage was the same Nucleus API issue with NU_Create_Timer() which we encountered at the very beginning of this project with Riviera timers: the code in uartfax.c from TCS211 was passing 0 as the initial dummy value for the timer duration, and our FreeNucleus version doesn't like it. The fix is the same: pass 1 as the initial dummy value instead.
author Space Falcon <falcon@ivan.Harhan.ORG>
date Thu, 30 Apr 2015 01:46:26 +0000
parents e7ba9fcb3637
children 1557e15a012f
line wrap: on
line source

CC=	arm-elf-gcc
CFLAGS=	-Os -fno-builtin
CPPFLAGS=-I../include
LD=	arm-elf-ld
OBJCOPY=arm-elf-objcopy

PROG=	pirexplore
OBJS=	crt0.o cmdtab.o ffsparam.o flashid.o lcd.o main.o mygetchar.o rtc.o
LIBS=	../libcommon/libcommon.a ../libload/libload.a ../libtiffs/libtiffs.a \
	../libprintf/libprintf.a
LDS=	../env/iram.lds

TC_LIBS=`${CC} -print-file-name=libc.a` \
	`${CC} -print-file-name=libgcc.a`

all:	${PROG}.srec

crt0.S:	../env/crt0.S
	ln -s $< .

${PROG}.elf:	${OBJS} ${LIBS} ${LDS}
	${LD} -N --defsym Base_addr=0x800750 --defsym stack_bottom=0x87FFFC \
		-T ${LDS} -o $@ ${OBJS} \
		--start-group ${LIBS} --end-group \
		--start-group ${TC_LIBS} --end-group

${PROG}.srec:	${PROG}.elf
	${OBJCOPY} -O srec --srec-forceS3 --srec-len=30 $< $@

clean:
	rm -f *.o *errs *core *.elf *.bin *.srec crt0.S

FRC: