view target-utils/helloapp/Makefile @ 923:10b4bed10192

gsm-fw/L1: fix for the DSP patch corruption bug The L1 code we got from the LoCosto fw contains a feature for DSP CPU load measurement. This feature is a LoCosto-ism, i.e., not applicable to earlier DBB chips (Calypso) with their respective earlier DSP ROMs. Most of the code dealing with that feature is conditionalized as #if (DSP >= 38), but one spot was missed, and the MCU code was writing into an API word dealing with this feature. In TCS211 this DSP API word happens to be used by the DSP code patch, hence that write was corrupting the patched DSP code.
author Mychaela Falconia <falcon@ivan.Harhan.ORG>
date Mon, 19 Oct 2015 17:13:56 +0000
parents e7ba9fcb3637
children 5cff3579814c
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=	helloapp
OBJS=	crt0.o cmdtab.o main.o mygetchar.o
LIBS=	../libcommon/libcommon.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=0x83FFFC \
		-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: