view gsm-fw/gpf/osl/Makefile @ 867:c4da570dca83

int_osx_receive_prim() in gsm-fw/gpf/osx/osx.c: there was an error in the reconstruction of this function from disassembly in the logic that implements special handling for MPHC_RXLEV_REQ messages. The code is now fixed to properly match what the binary object version does; with this fix the firmware now performs the power measurement phase correctly and the initial network registration succeeds.
author Space Falcon <falcon@ivan.Harhan.ORG>
date Sat, 16 May 2015 06:34:09 +0000
parents 2f79ddc12bb0
children
line wrap: on
line source

CC=	arm-elf-gcc
COPTS=	-O2 -fno-builtin -mthumb-interwork -I../inc
IOPTS=	-DRUN_INT_RAM
XOPTS=	-DRUN_FLASH -mthumb

IOBJS=	os_com_ir.o os_mem_ir.o os_mis_ir.o os_pro_ir.o \
	os_sem_ir.o os_tim_ir.o
XOBJS=	os_com_fl.o os_drv.o os_isr.o os_mem_fl.o os_mis_fl.o os_pro_fl.o \
	os_sem_fl.o os_tim_fl.o

all:	${IOBJS} ${XOBJS}

${IOBJS}:	%.o : %.c
	${CC} ${COPTS} ${IOPTS} -c $<

${XOBJS}:	%.o : %.c
	${CC} ${COPTS} ${XOPTS} -c $<

clean:
	rm -f *.[oa] *errs