FreeCalypso > hg > fc-magnetite
view src/aci2/bmi/bmi_env.mak @ 685:3fb7384e820d
tpudrv12.h: FCDEV3B goes back to being itself
A while back we had the idea of a FreeCalypso modem family whereby our
current fcdev3b target would some day morph into fcmodem, with multiple
FC modem family products, potentially either triband or quadband, being
firmware-compatible with each other and with our original FCDEV3B. But
in light of the discovery of Tango modules that earlier idea is now being
withdrawn: instead the already existing Tango hw is being adopted into
our FreeCalypso family.
Tango cannot be firmware-compatible with triband OM/FCDEV3B targets
because the original quadband RFFE on Tango modules is wired in TI's
original Leonardo arrangement. Because this Leonardo/Tango way is now
becoming the official FreeCalypso way of driving quadband RFFEs thanks
to the adoption of Tango into our FC family, our earlier idea of
extending FIC's triband RFFE control signals with TSPACT5 no longer makes
much sense - we will probably never produce any new hardware with that
once-proposed arrangement. Therefore, that triband-or-quadband FCFAM
provision is being removed from the code base, and FCDEV3B goes back to
being treated the same way as CONFIG_TARGET_GTAMODEM for RFFE control
purposes.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Thu, 24 Sep 2020 21:03:08 +0000 |
parents | 93999a60b835 |
children |
line wrap: on
line source
#BMI compilation parameters. # EazyText compilation. 1 -> Compile. 0 -> Don't compile. # Hard-wire ETXT off until supported, then set via .inf file. #ifndef ETXT #ETXT = 0 #endif # Chinese compilation. . 1 -> Compile. 0 -> Don't compile. # Hard-wire CHIMMI off until supported, then set via .inf file. #ifndef CHIMMI #CHIMMI = 0 #endif # Game compilation. . 1 -> Compile. 0 -> Don't compile. # Now set via .inf file #ifndef GAME #GAME = 1 #endif # Melody generator compilation. . 1 -> Compile. 0 -> Don't compile. # Hard-wire MELGEN off until supported, then set via .inf file. #ifndef MELGEN export MELGEN = 0 #endif # HOMEZONE compilation. 1 -> Compile. 0 -> Don't compile. # Now set via .inf file #ifndef HZONE #HZONE = 1 #endif # GPRS compilation. 1 -> Compile. 0 -> Don't compile. # Should we be setting this here at all ????? Set via .inf file ????? #ifndef GPRS #GPRS = 1 #endif # Internal phonebook compilation. 1 -> Compile. 0 -> Don't compile. # Hard-wire INTPB on, no .inf file setting. ifndef INTPB INTPB = 1 endif ifeq ($(WAP),1) export AUS_REL_DIR = $(CONDAT_BASE_DIR)/../ausystem # $AUSYSTEM_DIR is being set by /g23m/makefile, if $WAP==1 export GLE_DIR = $(AUS_REL_DIR)/GLE endif ifeq ($(ETXT),1) export ZI_DIR = $(CONDAT_BASE_DIR)/../zi endif ifeq ($(SRVC),1) ifeq ($(MMI),2) # dbachran, 2003-06-11: isn't this variable obsolete by now? CMDADD:=_fd# To be added to the cmd name file in order to set the proper libraries to the external memory. endif endif ifeq ($(WAP),1) ifeq ($(MMI),2) # dbachran, 2003-06-11: isn't this variable obsolete by now? CMDADD:=_wap# To be added to the cmd name file in order to set the proper libraries to the external memory. endif endif ifeq ($(WAP),1) # NOTE: Use $AUSYSTEM_DIR (absolute path, set by /g23m/makefile) here # since these variables are used for includes from source dirs below, # so no relativ path allowed. export IAUS = $(AUSYSTEM_DIR)/Gwc/include export IAUSC = $(AUSYSTEM_DIR)/Gwc/source export IGLE = $(AUSYSTEM_DIR)/GLE/include export IAUSOPTMEM = $(AUSYSTEM_DIR)/Gwc/optional/memory endif ifeq ($(ETXT),1) include $(ZI_DIR)/zi_env.mak endif ifeq ($(ETXT),1) CONDAT_LIBS += $(ZI_LIB) $(ZI_C_LIB) endif ifeq ($(WAP),1) include $(AUS_REL_DIR)/ausystem_env.mak include $(GLE_DIR)/gle_env.mak endif ifeq ($(WAP),1) # Libraries for wap versions CONDAT_LIBS += $(AUS_REL_LIB) $(GLE_REL_LIB) endif