FreeCalypso > hg > freecalypso-sw
view gsm-fw/riviera/Makefile @ 884:353daaa6014d
gsm-fw/gpf/conf/gsmcomp.c: increased max partition in the voice-only config
The code we got from TCS211 had the maximum prim pool partition size set to
900 bytes in the voice-only config (no FAX_AND_DATA, no GPRS) and to 1600 bytes
in every other config. As it turns out, this "minimized" config breaks when
the AT command interface is used with %CPI enabled, as the responsible code in
ATI does an ACI_MALLOC of 1012 bytes. TI may have considered this case to be
unsupported usage (perhaps they didn't care about the combination of a
voice-only PS with AT command control), but we do want this use case to work
without crashing. Solution: I made the largest prim pool the same as it is
with FAX_AND_DATA: 3 partitions of 1600 bytes.
author | Space Falcon <falcon@ivan.Harhan.ORG> |
---|---|
date | Sat, 27 Jun 2015 07:31:30 +0000 |
parents | afceeeb2cba1 |
children |
line wrap: on
line source
AR= arm-elf-ar RANLIB= arm-elf-ranlib SUBDIR= init rvf rvm rvt support INIT_OBJS= init/create_RVtasks.o RVF_OBJS= rvf/rvf_buffer.o rvf/rvf_mem_pool.o rvf/rvf_msg.o \ rvf/rvf_task.o rvf/rvf_time.o rvf/rvf_trace_adapt.o RVM_OBJS= rvm/rvm_api.o rvm/rvm_group_swe.o rvm/rvm_mem.o rvm/rvm_swe.o \ rvm/rvm_swe_db.o rvm/rvm_swe_hdlr.o rvm/rvm_task.o RVT_OBJS= rvt/rvt_api.o rvt/rvt_env.o rvt/rvt_task.o SUP_OBJS= support/exception.o OBJS= ${INIT_OBJS} ${RVF_OBJS} ${RVM_OBJS} ${RVT_OBJS} ${SUP_OBJS} all: librv.a ${SUBDIR}: FRC cd $@; ${MAKE} ${MFLAGS} ${INIT_OBJS}: init @true ${RVF_OBJS}: rvf @true ${RVM_OBJS}: rvm @true ${RVT_OBJS}: rvt @true ${SUP_OBJS}: support @true librv.a: ${OBJS} ${AR} cru $@ ${OBJS} ${RANLIB} $@ clean: FRC rm -f *.[oa] *.out *errs for i in ${SUBDIR}; do (cd $$i; ${MAKE} ${MFLAGS} clean); done FRC: