annotate components/aci-classic @ 598:717ed17d82c6

aci3 vocoder control revamped, AT@VSEL now works as it should The vocoder control code (hl_audio_drv.c) that came with the TCS3 version of ACI was totally broken in the Calypso config (VOCODER_FUNC_INTERFACE) and worked in the standard analog voice environment only by luck. This code has now been rewritten to work correctly with our Calypso platform and TCS211 L1, and our new AT@VSEL mechanism (automatic enabling and disabling of MCSI voice path as the modem enters and exits the voice call state) now also works as designed.
author Mychaela Falconia <falcon@freecalypso.org>
date Wed, 27 Mar 2019 23:44:35 +0000
parents 78d1df0b8487
children afcb1115b9b3
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
10
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
1 # Building the classic TCS211 version of aci.lib
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
2
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
3 CFLAGS="-me -mt -o -pw2 -x -mw"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
4 CPPFLAGS=
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
5
15
c8bdae60fcb1 changed the generation of *_version.c files to not break on make clean
Mychaela Falconia <falcon@freecalypso.org>
parents: 12
diff changeset
6 make_version aci
10
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
7 cfile_plain aci_version.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
8
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
9 # Defines
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
10
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
11 CPPFLAGS=-DCCDTABLES_EXTERN
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
12 CPPFLAGS="$CPPFLAGS -DOPTION_MULTITHREAD"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
13 CPPFLAGS="$CPPFLAGS -DNEW_FRAME"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
14 CPPFLAGS="$CPPFLAGS -DNEW_ENTITY"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
15 CPPFLAGS="$CPPFLAGS -D_TARGET_"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
16 CPPFLAGS="$CPPFLAGS -DSHARED_VSI"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
17 CPPFLAGS="$CPPFLAGS -DALR"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
18 CPPFLAGS="$CPPFLAGS -DFF_HOMEZONE"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
19 CPPFLAGS="$CPPFLAGS -DFF_MMI_SAT_ICON"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
20 CPPFLAGS="$CPPFLAGS -DFF_MMI_SMS_DYNAMIC"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
21 CPPFLAGS="$CPPFLAGS -DFF_CPHS"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
22 CPPFLAGS="$CPPFLAGS -D_TMS470"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
23 CPPFLAGS="$CPPFLAGS -DUART"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
24 CPPFLAGS="$CPPFLAGS -DFF_ATI"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
25 CPPFLAGS="$CPPFLAGS -DNWARN"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
26 CPPFLAGS="$CPPFLAGS -DFF_EM_MODE"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
27 CPPFLAGS="$CPPFLAGS -DVOCODER_FUNC_INTERFACE"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
28 CPPFLAGS="$CPPFLAGS -DAT_INTERPRETER"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
29 CPPFLAGS="$CPPFLAGS -DUSE_L1FD_FUNC_INTERFACE"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
30
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
31 if [ "$SRVC" != 0 ]
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
32 then
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
33 CPPFLAGS="$CPPFLAGS -DFAX_AND_DATA"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
34 if [ "$SRVC" = 1 ]
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
35 then
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
36 CPPFLAGS="$CPPFLAGS -DFF_FAX"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
37 fi
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
38 CPPFLAGS="$CPPFLAGS -DUSE_L2FD_FUNC_INTERFACE"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
39 fi
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
40
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
41 CPPFLAGS="$CPPFLAGS -DSRVC=$SRVC"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
42 CPPFLAGS="$CPPFLAGS -DMMI=$MMI"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
43
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
44 if [ "$MMI" = 0 ]
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
45 then
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
46 CPPFLAGS="$CPPFLAGS -DACI"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
47 elif [ "$MMI" = 2 ]
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
48 then
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
49 CPPFLAGS="$CPPFLAGS -DMFW"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
50 fi
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
51
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
52 CPPFLAGS="$CPPFLAGS -DPHONEBOOK_EXTENSION"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
53
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
54 if [ "$GPRS" = 1 ]
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
55 then
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
56 CPPFLAGS="$CPPFLAGS -DGPRS"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
57 fi
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
58
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
59 CPPFLAGS="$CPPFLAGS -DSMS_PDU_SUPPORT"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
60 CPPFLAGS="$CPPFLAGS -DSIM_TOOLKIT"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
61 CPPFLAGS="$CPPFLAGS -DDTI2"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
62 CPPFLAGS="$CPPFLAGS -DDTI"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
63 CPPFLAGS="$CPPFLAGS -DUART"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
64 CPPFLAGS="$CPPFLAGS -DFF_ATI"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
65
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
66 # Includes
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
67
19
88f40f4c829f condat2 vs. condat3 includes selection logic
Mychaela Falconia <falcon@freecalypso.org>
parents: 17
diff changeset
68 CPPFLAGS="$CPPFLAGS -I$SRC/$CONDAT/com/inc"
17
6323e661f2ed added the ability to select different gpf and cdginc versions
Mychaela Falconia <falcon@freecalypso.org>
parents: 15
diff changeset
69 CPPFLAGS="$CPPFLAGS -I$SRC/$GPF/inc"
19
88f40f4c829f condat2 vs. condat3 includes selection logic
Mychaela Falconia <falcon@freecalypso.org>
parents: 17
diff changeset
70 CPPFLAGS="$CPPFLAGS -I$SRC/$CONDAT/com/include"
17
6323e661f2ed added the ability to select different gpf and cdginc versions
Mychaela Falconia <falcon@freecalypso.org>
parents: 15
diff changeset
71 CPPFLAGS="$CPPFLAGS -I../../$CDGINC"
10
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
72
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
73 if [ "$MMI" = 2 ]
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
74 then
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
75 CPPFLAGS="$CPPFLAGS -I$SRC/aci2/mfw"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
76 fi
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
77
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
78 CPPFLAGS="$CPPFLAGS -I$SRC/aci2/ksd"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
79 CPPFLAGS="$CPPFLAGS -I$SRC/aci2/ati_ext"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
80 CPPFLAGS="$CPPFLAGS -I$SRC/aci2/aci"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
81 CPPFLAGS="$CPPFLAGS -I$SRC/aci2/aci_ext"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
82 CPPFLAGS="$CPPFLAGS -I$SRC/aci2/aci_dti_mng"
17
6323e661f2ed added the ability to select different gpf and cdginc versions
Mychaela Falconia <falcon@freecalypso.org>
parents: 15
diff changeset
83 CPPFLAGS="$CPPFLAGS -I../../$CDGPRIM"
10
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
84 CPPFLAGS="$CPPFLAGS -I.."
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
85 CPPFLAGS="$CPPFLAGS -I../config"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
86 CPPFLAGS="$CPPFLAGS -I$SRC/cs/riviera"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
87 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_app"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
88 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
89 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/abb"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
90 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/armio"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
91 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/clkm"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
92 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/conf"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
93 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/dma"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
94 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/dsp_dwnld"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
95 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/inth"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
96 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/memif"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
97 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/rhea"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
98 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/security"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
99 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/spi"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
100 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/timer"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
101 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/uart"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
102 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/ulpd"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
103 CPPFLAGS="$CPPFLAGS -I$SRC/cs/system"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
104 CPPFLAGS="$CPPFLAGS -I$SRC/cs/layer1/include"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
105 CPPFLAGS="$CPPFLAGS -I$SRC/cs/services"
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
106
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
107 # ACI source modules
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
108
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
109 SRCDIR=$SRC/aci2/aci
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
110
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
111 # ATI stuff
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
112 cfile_str2ind $SRCDIR/ati_sat.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
113 cfile_str2ind $SRCDIR/ati_src_sat.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
114 cfile_str2ind $SRCDIR/ati_pdu.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
115 cfile_str2ind $SRCDIR/ati_bas.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
116 cfile_str2ind $SRCDIR/ati_cc.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
117 cfile_str2ind $SRCDIR/ati_cmd.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
118 cfile_str2ind $SRCDIR/ati_csc.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
119 cfile_str2ind $SRCDIR/ati_err.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
120
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
121 if [ "$SRVC" != 0 ]
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
122 then
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
123 cfile_str2ind $SRCDIR/ati_fd.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
124 fi
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
125
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
126 cfile_str2ind $SRCDIR/ati_io.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
127 cfile_str2ind $SRCDIR/ati_mm.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
128 cfile_str2ind $SRCDIR/ati_phb.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
129 cfile_str2ind $SRCDIR/ati_prs.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
130 cfile_str2ind $SRCDIR/ati_ret.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
131 cfile_str2ind $SRCDIR/ati_sim.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
132 cfile_str2ind $SRCDIR/ati_sms.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
133 cfile_str2ind $SRCDIR/ati_ss.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
134
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
135 if [ "$GPRS" = 1 ]
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
136 then
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
137 cfile_str2ind $SRCDIR/ati_gprs.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
138 fi
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
139
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
140 cfile_str2ind $SRCDIR/ati_mmi.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
141 cfile_str2ind $SRCDIR/ati_em.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
142 cfile_str2ind $SRCDIR/ati_em_ret.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
143 cfile_str2ind $SRCDIR/ati_cphs.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
144 cfile_str2ind $SRCDIR/ati_dti.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
145
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
146 cfile_str2ind $SRCDIR/ati_src_rvt.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
147 cfile_str2ind $SRCDIR/ati_omcompat.c
226
67fe1b3f4bd7 aci2: added some AT commands for exercising audio functions
Mychaela Falconia <falcon@freecalypso.org>
parents: 19
diff changeset
148 cfile_str2ind $SRCDIR/ati_audio.c
347
78d1df0b8487 aci2: AT%CBC and AT@CHARGE implemented
Mychaela Falconia <falcon@freecalypso.org>
parents: 226
diff changeset
149 cfile_str2ind $SRCDIR/ati_fchg.c
10
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
150
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
151 # ACI stuff
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
152 cfile_str2ind $SRCDIR/aci_aci.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
153 cfile_str2ind $SRCDIR/aci_mem.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
154 cfile_str2ind $SRCDIR/aci_csf.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
155 cfile_str2ind $SRCDIR/aci_pei.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
156 cfile_str2ind $SRCDIR/aci_tim.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
157 cfile_str2ind $SRCDIR/aci_util.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
158 cfile_str2ind $SRCDIR/aci_lst.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
159 cfile_str2ind $SRCDIR/dti_cntrl_mng.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
160 cfile_str2ind $SRCDIR/phb.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
161 cfile_str2ind $SRCDIR/aoc.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
162 cfile_str2ind $SRCDIR/aci_mfw.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
163 cfile_str2ind $SRCDIR/aci_slock.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
164 cfile_str2ind $SRCDIR/aci_em.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
165
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
166 if [ "$GPRS" = 1 ]
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
167 then
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
168 cfile_str2ind $SRCDIR/gaci_srcc.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
169 cfile_str2ind $SRCDIR/gaci.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
170 cfile_str2ind $SRCDIR/gaci_ret.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
171 fi
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
172
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
173 cfile_str2ind $SRCDIR/hl_audio_drv.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
174
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
175 # ATISRC stuff
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
176 cfile_str2ind $SRCDIR/ati_src_uart.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
177 cfile_str2ind $SRCDIR/ati_src_uart_io.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
178
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
179 # CMH stuff (part 1)
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
180 cfile_str2ind $SRCDIR/cmh_sats.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
181 cfile_str2ind $SRCDIR/cmh_satr.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
182 cfile_str2ind $SRCDIR/cmh_satq.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
183
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
184 # CMH stuff (part 2)
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
185 if [ "$SRVC" = 0 ]
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
186 then
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
187 cfile_str2ind $SRCDIR/cmh_ccf.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
188 cfile_str2ind $SRCDIR/cmh_ccq.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
189 cfile_str2ind $SRCDIR/cmh_ccr.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
190 cfile_str2ind $SRCDIR/cmh_ccs.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
191 cfile_str2ind $SRCDIR/cmh_dmy.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
192 cfile_str2ind $SRCDIR/cmh_f.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
193 cfile_str2ind $SRCDIR/cmh_mmf.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
194 cfile_str2ind $SRCDIR/cmh_mmir.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
195 cfile_str2ind $SRCDIR/cmh_mmis.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
196 cfile_str2ind $SRCDIR/cmh_mmit.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
197 cfile_str2ind $SRCDIR/cmh_mmiq.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
198 cfile_str2ind $SRCDIR/cmh_mmq.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
199 cfile_str2ind $SRCDIR/cmh_mmr.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
200 cfile_str2ind $SRCDIR/cmh_mms.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
201 cfile_str2ind $SRCDIR/cmh_mmt.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
202 cfile_str2ind $SRCDIR/cmh_phbf.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
203 cfile_str2ind $SRCDIR/cmh_ssq.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
204 cfile_str2ind $SRCDIR/cmh_ssr.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
205 cfile_str2ind $SRCDIR/cmh_sss.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
206 cfile_str2ind $SRCDIR/cmh_phbq.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
207 cfile_str2ind $SRCDIR/cmh_phbs.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
208 cfile_str2ind $SRCDIR/cmh_phbt.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
209 cfile_str2ind $SRCDIR/cmh_phbr.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
210 cfile_str2ind $SRCDIR/cmh_simf.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
211 cfile_str2ind $SRCDIR/cmh_simq.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
212 cfile_str2ind $SRCDIR/cmh_simr.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
213 cfile_str2ind $SRCDIR/cmh_sims.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
214 cfile_str2ind $SRCDIR/cmh_smsf.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
215 cfile_str2ind $SRCDIR/cmh_smsq.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
216 cfile_str2ind $SRCDIR/cmh_smsr.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
217 cfile_str2ind $SRCDIR/cmh_smss.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
218 cfile_str2ind $SRCDIR/cmh_ssf.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
219 cfile_str2ind $SRCDIR/cmh_tsts.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
220 cfile_str2ind $SRCDIR/cmh_uartf.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
221 cfile_str2ind $SRCDIR/cmh_uartr.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
222 cfile_str2ind $SRCDIR/cmh_uarts.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
223 fi
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
224
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
225 cfile_str2ind $SRCDIR/cmh_emq.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
226 cfile_str2ind $SRCDIR/cmh_emr.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
227
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
228 # CMH stuff (part 3)
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
229 if [ "$SRVC" != 0 ]
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
230 then
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
231 cfile_str2ind $SRCDIR/cmh_ccf.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
232 cfile_str2ind $SRCDIR/cmh_ccq.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
233 cfile_str2ind $SRCDIR/cmh_ccr.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
234 cfile_str2ind $SRCDIR/cmh_ccs.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
235 cfile_str2ind $SRCDIR/cmh_dmy.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
236 cfile_str2ind $SRCDIR/cmh_f.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
237 cfile_str2ind $SRCDIR/cmh_l2rf.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
238 cfile_str2ind $SRCDIR/cmh_l2rq.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
239 cfile_str2ind $SRCDIR/cmh_l2rr.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
240 cfile_str2ind $SRCDIR/cmh_l2rs.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
241 cfile_str2ind $SRCDIR/cmh_mmf.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
242 cfile_str2ind $SRCDIR/cmh_mmir.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
243 cfile_str2ind $SRCDIR/cmh_mmis.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
244 cfile_str2ind $SRCDIR/cmh_mmit.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
245 cfile_str2ind $SRCDIR/cmh_mmiq.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
246 cfile_str2ind $SRCDIR/cmh_mmq.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
247 cfile_str2ind $SRCDIR/cmh_mmr.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
248 cfile_str2ind $SRCDIR/cmh_mms.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
249 cfile_str2ind $SRCDIR/cmh_mmt.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
250 cfile_str2ind $SRCDIR/cmh_phbf.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
251 cfile_str2ind $SRCDIR/cmh_phbq.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
252 cfile_str2ind $SRCDIR/cmh_ssq.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
253 cfile_str2ind $SRCDIR/cmh_ssr.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
254 cfile_str2ind $SRCDIR/cmh_sss.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
255 cfile_str2ind $SRCDIR/cmh_phbs.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
256 cfile_str2ind $SRCDIR/cmh_phbt.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
257 cfile_str2ind $SRCDIR/cmh_phbr.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
258 cfile_str2ind $SRCDIR/cmh_raf.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
259 cfile_str2ind $SRCDIR/cmh_rar.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
260 cfile_str2ind $SRCDIR/cmh_ras.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
261 cfile_str2ind $SRCDIR/cmh_simf.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
262 cfile_str2ind $SRCDIR/cmh_simq.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
263 cfile_str2ind $SRCDIR/cmh_simr.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
264 cfile_str2ind $SRCDIR/cmh_sims.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
265 cfile_str2ind $SRCDIR/cmh_smsf.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
266 cfile_str2ind $SRCDIR/cmh_smsq.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
267 cfile_str2ind $SRCDIR/cmh_smsr.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
268 cfile_str2ind $SRCDIR/cmh_smss.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
269 cfile_str2ind $SRCDIR/cmh_ssf.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
270
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
271 if [ "$SRVC" = 1 ]
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
272 then
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
273 cfile_str2ind $SRCDIR/cmh_t30f.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
274 cfile_str2ind $SRCDIR/cmh_t30r.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
275 cfile_str2ind $SRCDIR/cmh_t30s.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
276 cfile_str2ind $SRCDIR/cmh_t30q.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
277 fi
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
278
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
279 cfile_str2ind $SRCDIR/cmh_tsts.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
280 cfile_str2ind $SRCDIR/cmh_uartf.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
281 cfile_str2ind $SRCDIR/cmh_uartr.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
282 cfile_str2ind $SRCDIR/cmh_uarts.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
283 fi
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
284
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
285 # CMH stuff (part 4)
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
286 # all WAP/TCPIP/SATE stuff - not in FreeCalypso
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
287
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
288 # CMH stuff (part 5)
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
289 if [ "$GPRS" = 1 ]
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
290 then
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
291 cfile_str2ind $SRCDIR/cmh_gmmf.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
292 cfile_str2ind $SRCDIR/cmh_gmmq.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
293 cfile_str2ind $SRCDIR/cmh_gmmr.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
294 cfile_str2ind $SRCDIR/cmh_gmms.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
295 cfile_str2ind $SRCDIR/cmh_gpppf.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
296 cfile_str2ind $SRCDIR/cmh_gpppr.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
297 cfile_str2ind $SRCDIR/cmh_gppps.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
298 cfile_str2ind $SRCDIR/cmh_snds.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
299 cfile_str2ind $SRCDIR/cmh_sndr.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
300 cfile_str2ind $SRCDIR/cmh_smf.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
301 cfile_str2ind $SRCDIR/cmh_smq.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
302 cfile_str2ind $SRCDIR/cmh_smr.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
303 cfile_str2ind $SRCDIR/cmh_sms.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
304 cfile_str2ind $SRCDIR/cmh_smt.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
305 fi
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
306
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
307 # CMH stuff (part 6)
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
308 cfile_str2ind $SRCDIR/cmh_cphs.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
309 cfile_str2ind $SRCDIR/cmh_dti.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
310
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
311 # PSA stuff
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
312 cfile_str2ind $SRCDIR/psa_satf.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
313 cfile_str2ind $SRCDIR/psa_satp.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
314 cfile_str2ind $SRCDIR/psa_sats.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
315 cfile_str2ind $SRCDIR/cmh_satf.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
316
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
317 cfile_str2ind $SRCDIR/psa_ccf.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
318 cfile_str2ind $SRCDIR/psa_ccp.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
319 cfile_str2ind $SRCDIR/psa_ccs.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
320 cfile_str2ind $SRCDIR/psa_f.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
321
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
322 if [ "$SRVC" != 0 ]
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
323 then
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
324 cfile_str2ind $SRCDIR/psa_l2rf.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
325 cfile_str2ind $SRCDIR/psa_l2rp.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
326 cfile_str2ind $SRCDIR/psa_l2rs.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
327 fi
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
328
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
329 cfile_str2ind $SRCDIR/psa_mmf.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
330 cfile_str2ind $SRCDIR/psa_mmif.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
331 cfile_str2ind $SRCDIR/psa_mmip.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
332 cfile_str2ind $SRCDIR/psa_mmis.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
333 cfile_str2ind $SRCDIR/psa_mmp.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
334 cfile_str2ind $SRCDIR/psa_mms.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
335
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
336 if [ "$SRVC" != 0 ]
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
337 then
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
338 cfile_str2ind $SRCDIR/psa_raf.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
339 cfile_str2ind $SRCDIR/psa_rap.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
340 cfile_str2ind $SRCDIR/psa_ras.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
341 fi
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
342
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
343 cfile_str2ind $SRCDIR/psa_simf.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
344 cfile_str2ind $SRCDIR/psa_simp.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
345 cfile_str2ind $SRCDIR/psa_sims.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
346 cfile_str2ind $SRCDIR/psa_smsf.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
347 cfile_str2ind $SRCDIR/psa_smsp.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
348 cfile_str2ind $SRCDIR/psa_smss.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
349 cfile_str2ind $SRCDIR/psa_ssf.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
350 cfile_str2ind $SRCDIR/psa_ssp.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
351 cfile_str2ind $SRCDIR/psa_sss.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
352
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
353 if [ "$SRVC" = 1 ]
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
354 then
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
355 cfile_str2ind $SRCDIR/psa_t30f.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
356 cfile_str2ind $SRCDIR/psa_t30p.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
357 cfile_str2ind $SRCDIR/psa_t30s.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
358 fi
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
359
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
360 cfile_str2ind $SRCDIR/psa_util.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
361 cfile_str2ind $SRCDIR/psa_uartp.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
362 cfile_str2ind $SRCDIR/psa_uarts.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
363
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
364 if [ "$SRVC" != 0 ]
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
365 then
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
366 cfile_str2ind $SRCDIR/psa_tras.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
367 cfile_str2ind $SRCDIR/psa_trap.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
368 fi
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
369
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
370 cfile_str2ind $SRCDIR/psa_mtst.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
371
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
372 if [ "$GPRS" = 1 ]
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
373 then
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
374 cfile_str2ind $SRCDIR/psa_gmmf.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
375 cfile_str2ind $SRCDIR/psa_gmmp.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
376 cfile_str2ind $SRCDIR/psa_gmms.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
377 cfile_str2ind $SRCDIR/psa_gpppf.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
378 cfile_str2ind $SRCDIR/psa_gpppp.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
379 cfile_str2ind $SRCDIR/psa_gppps.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
380 cfile_str2ind $SRCDIR/psa_sndp.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
381 cfile_str2ind $SRCDIR/psa_snds.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
382 cfile_str2ind $SRCDIR/psa_smf.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
383 cfile_str2ind $SRCDIR/psa_smp.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
384 cfile_str2ind $SRCDIR/psa_sms.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
385 fi
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
386
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
387 # miscellaneous stuff
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
388 cfile_str2ind $SRCDIR/sap_dti.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
389
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
390 if [ "$GPRS" = 1 ]
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
391 then
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
392 cfile_str2ind $SRCDIR/sap_ppp.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
393 fi
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
394
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
395 cfile_str2ind $SRCDIR/sap_em.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
396 cfile_str2ind $SRCDIR/conc_sms.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
397 cfile_str2ind $SRCDIR/cphs.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
398 cfile_str2ind $SRCDIR/cphs_aci.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
399 cfile_str2ind $SRCDIR/line_edit.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
400 cfile_str2ind $SRCDIR/line_split.c
352f80da6813 ACI compiles!
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
401 cfile_str2ind $SRCDIR/dcm_f.c
11
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
402
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
403 # KSD sourceset, new defines
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
404
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
405 CPPFLAGS=-DCCDTABLES_EXTERN
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
406 CPPFLAGS="$CPPFLAGS -DOPTION_MULTITHREAD"
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
407 CPPFLAGS="$CPPFLAGS -DNEW_FRAME"
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
408 CPPFLAGS="$CPPFLAGS -DNEW_ENTITY"
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
409 CPPFLAGS="$CPPFLAGS -D_TARGET_"
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
410 CPPFLAGS="$CPPFLAGS -DSHARED_VSI"
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
411 CPPFLAGS="$CPPFLAGS -DALR"
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
412 CPPFLAGS="$CPPFLAGS -DFF_HOMEZONE"
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
413 CPPFLAGS="$CPPFLAGS -DFF_MMI_SAT_ICON"
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
414 CPPFLAGS="$CPPFLAGS -DFF_MMI_SMS_DYNAMIC"
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
415 CPPFLAGS="$CPPFLAGS -DFF_CPHS"
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
416 CPPFLAGS="$CPPFLAGS -D_TMS470"
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
417 CPPFLAGS="$CPPFLAGS -DUART"
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
418 CPPFLAGS="$CPPFLAGS -DFF_ATI"
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
419 CPPFLAGS="$CPPFLAGS -DNWARN"
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
420 CPPFLAGS="$CPPFLAGS -DFF_EM_MODE"
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
421 CPPFLAGS="$CPPFLAGS -DAT_INTERPRETER"
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
422 CPPFLAGS="$CPPFLAGS -DUSE_L1FD_FUNC_INTERFACE"
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
423
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
424 if [ "$SRVC" != 0 ]
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
425 then
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
426 CPPFLAGS="$CPPFLAGS -DFAX_AND_DATA"
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
427 if [ "$SRVC" = 1 ]
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
428 then
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
429 CPPFLAGS="$CPPFLAGS -DFF_FAX"
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
430 fi
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
431 CPPFLAGS="$CPPFLAGS -DUSE_L2FD_FUNC_INTERFACE"
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
432 fi
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
433
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
434 CPPFLAGS="$CPPFLAGS -DSRVC=$SRVC"
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
435 CPPFLAGS="$CPPFLAGS -DMMI=$MMI"
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
436
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
437 if [ "$MMI" = 0 ]
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
438 then
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
439 CPPFLAGS="$CPPFLAGS -DACI"
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
440 elif [ "$MMI" = 2 ]
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
441 then
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
442 CPPFLAGS="$CPPFLAGS -DMFW"
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
443 fi
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
444
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
445 CPPFLAGS="$CPPFLAGS -DPHONEBOOK_EXTENSION"
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
446
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
447 if [ "$GPRS" = 1 ]
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
448 then
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
449 CPPFLAGS="$CPPFLAGS -DGPRS"
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
450 fi
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
451
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
452 CPPFLAGS="$CPPFLAGS -DSMS_PDU_SUPPORT"
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
453 CPPFLAGS="$CPPFLAGS -DSIM_TOOLKIT"
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
454
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
455 # New includes
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
456
19
88f40f4c829f condat2 vs. condat3 includes selection logic
Mychaela Falconia <falcon@freecalypso.org>
parents: 17
diff changeset
457 CPPFLAGS="$CPPFLAGS -I$SRC/$CONDAT/com/inc"
17
6323e661f2ed added the ability to select different gpf and cdginc versions
Mychaela Falconia <falcon@freecalypso.org>
parents: 15
diff changeset
458 CPPFLAGS="$CPPFLAGS -I$SRC/$GPF/inc"
19
88f40f4c829f condat2 vs. condat3 includes selection logic
Mychaela Falconia <falcon@freecalypso.org>
parents: 17
diff changeset
459 CPPFLAGS="$CPPFLAGS -I$SRC/$CONDAT/com/include"
17
6323e661f2ed added the ability to select different gpf and cdginc versions
Mychaela Falconia <falcon@freecalypso.org>
parents: 15
diff changeset
460 CPPFLAGS="$CPPFLAGS -I../../$CDGINC"
11
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
461 CPPFLAGS="$CPPFLAGS -I$SRC/aci2/aci"
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
462 CPPFLAGS="$CPPFLAGS -I$SRC/aci2/ksd"
17
6323e661f2ed added the ability to select different gpf and cdginc versions
Mychaela Falconia <falcon@freecalypso.org>
parents: 15
diff changeset
463 CPPFLAGS="$CPPFLAGS -I../../$CDGPRIM"
11
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
464
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
465 # KSD source modules
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
466
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
467 SRCDIR=$SRC/aci2/ksd
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
468
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
469 cfile_str2ind $SRCDIR/ksd.c
f5c6ca078e2f components/aci-classic: KSD sourceset added
Mychaela Falconia <falcon@freecalypso.org>
parents: 10
diff changeset
470 cfile_str2ind $SRCDIR/ksd_utl.c
12
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
471
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
472 # ati_ext sourceset, new defines
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
473
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
474 CPPFLAGS=-DCCDTABLES_EXTERN
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
475 CPPFLAGS="$CPPFLAGS -DOPTION_MULTITHREAD"
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
476 CPPFLAGS="$CPPFLAGS -DNEW_FRAME"
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
477 CPPFLAGS="$CPPFLAGS -DNEW_ENTITY"
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
478 CPPFLAGS="$CPPFLAGS -D_TARGET_"
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
479 CPPFLAGS="$CPPFLAGS -DSHARED_VSI"
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
480 CPPFLAGS="$CPPFLAGS -DALR"
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
481 CPPFLAGS="$CPPFLAGS -DFF_HOMEZONE"
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
482 CPPFLAGS="$CPPFLAGS -DFF_MMI_SAT_ICON"
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
483 CPPFLAGS="$CPPFLAGS -DFF_MMI_SMS_DYNAMIC"
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
484 CPPFLAGS="$CPPFLAGS -DFF_CPHS"
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
485 CPPFLAGS="$CPPFLAGS -D_TMS470"
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
486 CPPFLAGS="$CPPFLAGS -DUART"
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
487 CPPFLAGS="$CPPFLAGS -DFF_ATI"
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
488 CPPFLAGS="$CPPFLAGS -DNWARN"
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
489 CPPFLAGS="$CPPFLAGS -DFF_EM_MODE"
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
490 CPPFLAGS="$CPPFLAGS -DAT_INTERPRETER"
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
491 CPPFLAGS="$CPPFLAGS -DUSE_L1FD_FUNC_INTERFACE"
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
492
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
493 if [ "$SRVC" != 0 ]
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
494 then
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
495 CPPFLAGS="$CPPFLAGS -DFAX_AND_DATA"
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
496 if [ "$SRVC" = 1 ]
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
497 then
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
498 CPPFLAGS="$CPPFLAGS -DFF_FAX"
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
499 fi
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
500 CPPFLAGS="$CPPFLAGS -DUSE_L2FD_FUNC_INTERFACE"
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
501 fi
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
502
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
503 CPPFLAGS="$CPPFLAGS -DSRVC=$SRVC"
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
504 CPPFLAGS="$CPPFLAGS -DMMI=$MMI"
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
505
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
506 if [ "$MMI" = 0 ]
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
507 then
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
508 CPPFLAGS="$CPPFLAGS -DACI"
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
509 elif [ "$MMI" = 2 ]
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
510 then
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
511 CPPFLAGS="$CPPFLAGS -DMFW"
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
512 fi
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
513
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
514 CPPFLAGS="$CPPFLAGS -DPHONEBOOK_EXTENSION"
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
515
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
516 if [ "$GPRS" = 1 ]
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
517 then
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
518 CPPFLAGS="$CPPFLAGS -DGPRS"
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
519 fi
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
520
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
521 CPPFLAGS="$CPPFLAGS -DSMS_PDU_SUPPORT"
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
522 CPPFLAGS="$CPPFLAGS -DSIM_TOOLKIT"
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
523
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
524 # New includes
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
525
19
88f40f4c829f condat2 vs. condat3 includes selection logic
Mychaela Falconia <falcon@freecalypso.org>
parents: 17
diff changeset
526 CPPFLAGS="$CPPFLAGS -I$SRC/$CONDAT/com/inc"
17
6323e661f2ed added the ability to select different gpf and cdginc versions
Mychaela Falconia <falcon@freecalypso.org>
parents: 15
diff changeset
527 CPPFLAGS="$CPPFLAGS -I$SRC/$GPF/inc"
19
88f40f4c829f condat2 vs. condat3 includes selection logic
Mychaela Falconia <falcon@freecalypso.org>
parents: 17
diff changeset
528 CPPFLAGS="$CPPFLAGS -I$SRC/$CONDAT/com/include"
17
6323e661f2ed added the ability to select different gpf and cdginc versions
Mychaela Falconia <falcon@freecalypso.org>
parents: 15
diff changeset
529 CPPFLAGS="$CPPFLAGS -I../../$CDGINC"
12
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
530 CPPFLAGS="$CPPFLAGS -I$SRC/aci2/aci"
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
531 CPPFLAGS="$CPPFLAGS -I$SRC/aci2/ati_ext"
17
6323e661f2ed added the ability to select different gpf and cdginc versions
Mychaela Falconia <falcon@freecalypso.org>
parents: 15
diff changeset
532 CPPFLAGS="$CPPFLAGS -I../../$CDGPRIM"
12
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
533
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
534 # ati_ext source modules
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
535
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
536 SRCDIR=$SRC/aci2/ati_ext
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
537
be16a5124f86 components/aci-classic: ati_ext sourceset added, should be complete now
Mychaela Falconia <falcon@freecalypso.org>
parents: 11
diff changeset
538 cfile_str2ind $SRCDIR/ati_ext_mech.c