annotate components/icn-tcs3 @ 629:3231dd9b38c1

armio.c: make GPIOs 8 & 13 outputs driving 1 on all "classic" targets Calypso GPIOs 8 & 13 are pinmuxed with MCUEN1 & MCUEN2, respectively, and on powerup these pins are MCUEN, i.e., outputs driving 1. TI's code for C-Sample and earlier turns them into GPIOs configured as outputs also driving 1 - so far, so good - but TI's code for BOARD 41 (which covers D-Sample, Leonardo and all real world Calypso devices derived from the latter) switches them from MCUEN to GPIOs, but then leaves them as inputs. Given that the hardware powerup state of these two pins is outputs driving 1, every Calypso board design MUST be compatible with such driving; typically these GPIO signals will be either unused and unconnected or connected as outputs driving some peripheral. Turning these pins into GPIO inputs will result in floating inputs on every reasonably-wired board, thus I am convinced that this configuration is nothing but a bug on the part of whoever wrote this code at TI. This floating input bug had already been fixed earlier for GTA modem and FCDEV3B targets; the present change makes the fix unconditional for all "classic" targets. The newly affected targets are D-Sample, Leonardo, Tango and GTM900.
author Mychaela Falconia <falcon@freecalypso.org>
date Thu, 02 Jan 2020 05:38:26 +0000
parents ad7f986afae3
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
431
b006702b48ca components/icn-tcs3: recipe created, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents: 419
diff changeset
1 # Building icn.lib from TCS3/LoCosto source
124
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
2
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
3 CFLAGS="-me -mt -o -pw2 -x -mw"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
4 CPPFLAGS=
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
5
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
6 # Defines
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
7
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
8 CPPFLAGS=-DMMI_HOMEZONE_ENABLED
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
9 CPPFLAGS="$CPPFLAGS -DFF_MMI_SAT_ICON"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
10 CPPFLAGS="$CPPFLAGS -DFF_MMI_SMS_DYNAMIC"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
11
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
12 if [ "$GPRS" = 1 ]
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
13 then
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
14 CPPFLAGS="$CPPFLAGS -DMMI_GPRS_ENABLED"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
15 fi
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
16
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
17 CPPFLAGS="$CPPFLAGS -DMMI_EM_ENABLED"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
18 CPPFLAGS="$CPPFLAGS -DNO_ASCIIZ"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
19
452
4d7c2ccb5814 config mechanism: high-level UI config made separate from target display drivers
Mychaela Falconia <falcon@freecalypso.org>
parents: 451
diff changeset
20 case "$UI_CONFIG" in
4d7c2ccb5814 config mechanism: high-level UI config made separate from target display drivers
Mychaela Falconia <falcon@freecalypso.org>
parents: 451
diff changeset
21 bigcolor)
451
fd1d9063ad40 config mechanism: added ability to build D-Sample B&W UI configuration
Mychaela Falconia <falcon@freecalypso.org>
parents: 431
diff changeset
22 CPPFLAGS="$CPPFLAGS -DCOLOURDISPLAY"
452
4d7c2ccb5814 config mechanism: high-level UI config made separate from target display drivers
Mychaela Falconia <falcon@freecalypso.org>
parents: 451
diff changeset
23 CPPFLAGS="$CPPFLAGS -DLSCREEN"
4d7c2ccb5814 config mechanism: high-level UI config made separate from target display drivers
Mychaela Falconia <falcon@freecalypso.org>
parents: 451
diff changeset
24 ;;
4d7c2ccb5814 config mechanism: high-level UI config made separate from target display drivers
Mychaela Falconia <falcon@freecalypso.org>
parents: 451
diff changeset
25 bigbw)
4d7c2ccb5814 config mechanism: high-level UI config made separate from target display drivers
Mychaela Falconia <falcon@freecalypso.org>
parents: 451
diff changeset
26 CPPFLAGS="$CPPFLAGS -DLSCREEN"
4d7c2ccb5814 config mechanism: high-level UI config made separate from target display drivers
Mychaela Falconia <falcon@freecalypso.org>
parents: 451
diff changeset
27 ;;
4d7c2ccb5814 config mechanism: high-level UI config made separate from target display drivers
Mychaela Falconia <falcon@freecalypso.org>
parents: 451
diff changeset
28 84x48)
4d7c2ccb5814 config mechanism: high-level UI config made separate from target display drivers
Mychaela Falconia <falcon@freecalypso.org>
parents: 451
diff changeset
29 ;;
4d7c2ccb5814 config mechanism: high-level UI config made separate from target display drivers
Mychaela Falconia <falcon@freecalypso.org>
parents: 451
diff changeset
30 *)
4d7c2ccb5814 config mechanism: high-level UI config made separate from target display drivers
Mychaela Falconia <falcon@freecalypso.org>
parents: 451
diff changeset
31 echo "Error: UI_CONFIG=$UI_CONFIG setting not understood" 1>&2
4d7c2ccb5814 config mechanism: high-level UI config made separate from target display drivers
Mychaela Falconia <falcon@freecalypso.org>
parents: 451
diff changeset
32 exit 1
4d7c2ccb5814 config mechanism: high-level UI config made separate from target display drivers
Mychaela Falconia <falcon@freecalypso.org>
parents: 451
diff changeset
33 esac
124
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
34
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
35 CPPFLAGS="$CPPFLAGS -DINT_PHONEBOOK"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
36 CPPFLAGS="$CPPFLAGS -DNEW_EDITOR"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
37 CPPFLAGS="$CPPFLAGS -DTRGT_G23"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
38 CPPFLAGS="$CPPFLAGS -DAUS_CONDAT_TYPE_PORTING"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
39 CPPFLAGS="$CPPFLAGS -DCCDTABLES_EXTERN"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
40 CPPFLAGS="$CPPFLAGS -DOPTION_MULTITHREAD"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
41 CPPFLAGS="$CPPFLAGS -DNEW_FRAME"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
42 CPPFLAGS="$CPPFLAGS -DNEW_ENTITY"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
43 CPPFLAGS="$CPPFLAGS -D_TARGET_"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
44 CPPFLAGS="$CPPFLAGS -DSHARED_VSI"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
45 CPPFLAGS="$CPPFLAGS -DALR"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
46 CPPFLAGS="$CPPFLAGS -DFF_HOMEZONE"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
47 CPPFLAGS="$CPPFLAGS -DFF_MMI_SAT_ICON"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
48 CPPFLAGS="$CPPFLAGS -DFF_MMI_SMS_DYNAMIC"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
49 CPPFLAGS="$CPPFLAGS -DFF_CPHS"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
50 CPPFLAGS="$CPPFLAGS -D_TMS470"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
51 CPPFLAGS="$CPPFLAGS -DUART"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
52 CPPFLAGS="$CPPFLAGS -DFF_ATI"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
53 CPPFLAGS="$CPPFLAGS -DPHONEBOOK_EXTENSION"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
54
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
55 if [ "$GPRS" = 1 ]
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
56 then
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
57 CPPFLAGS="$CPPFLAGS -DGPRS"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
58 fi
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
59
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
60 CPPFLAGS="$CPPFLAGS -DFF_EM_MODE"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
61 CPPFLAGS="$CPPFLAGS -DMMI=2"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
62 CPPFLAGS="$CPPFLAGS -DMFW"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
63 CPPFLAGS="$CPPFLAGS -DAT_INTERPRETER"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
64 CPPFLAGS="$CPPFLAGS -DUSE_L1FD_FUNC_INTERFACE"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
65
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
66 if [ "$SRVC" != 0 ]
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
67 then
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
68 CPPFLAGS="$CPPFLAGS -DFAX_AND_DATA"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
69 if [ "$SRVC" = 1 ]
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
70 then
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
71 CPPFLAGS="$CPPFLAGS -DFF_FAX"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
72 fi
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
73 CPPFLAGS="$CPPFLAGS -DUSE_L2FD_FUNC_INTERFACE"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
74 fi
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
75
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
76 CPPFLAGS="$CPPFLAGS -DSRVC=$SRVC"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
77 CPPFLAGS="$CPPFLAGS -DNWARN"
482
ad7f986afae3 pass -DCHIPSET and -DBOARD for all TCS3.2 components
Mychaela Falconia <falcon@freecalypso.org>
parents: 452
diff changeset
78 CPPFLAGS="$CPPFLAGS -DCHIPSET=$CHIPSET"
ad7f986afae3 pass -DCHIPSET and -DBOARD for all TCS3.2 components
Mychaela Falconia <falcon@freecalypso.org>
parents: 452
diff changeset
79 CPPFLAGS="$CPPFLAGS -DBOARD=41"
124
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
80
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
81 # Includes
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
82
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
83 CPPFLAGS="$CPPFLAGS -I$SRC/$CONDAT/com/inc"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
84 CPPFLAGS="$CPPFLAGS -I$SRC/$GPF/inc"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
85 CPPFLAGS="$CPPFLAGS -I$SRC/$CONDAT/com/include"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
86 CPPFLAGS="$CPPFLAGS -I../../$CDGINC"
431
b006702b48ca components/icn-tcs3: recipe created, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents: 419
diff changeset
87 CPPFLAGS="$CPPFLAGS -I$SRC/ui3/bmi"
b006702b48ca components/icn-tcs3: recipe created, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents: 419
diff changeset
88 CPPFLAGS="$CPPFLAGS -I$SRC/ui3/mfw"
419
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents: 378
diff changeset
89 CPPFLAGS="$CPPFLAGS -I$SRC/$ACI/aci"
59143cd42ec7 failed attempt to build TCS211 UI atop of the hybrid config
Mychaela Falconia <falcon@freecalypso.org>
parents: 378
diff changeset
90 CPPFLAGS="$CPPFLAGS -I$SRC/$ACI/ksd"
124
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
91 CPPFLAGS="$CPPFLAGS -I.."
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
92 CPPFLAGS="$CPPFLAGS -I../config"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
93 CPPFLAGS="$CPPFLAGS -I$SRC/cs/riviera"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
94 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_app"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
95 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
96 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/abb"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
97 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/armio"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
98 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/clkm"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
99 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/conf"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
100 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/dma"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
101 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/dsp_dwnld"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
102 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/inth"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
103 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/memif"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
104 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/rhea"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
105 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/security"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
106 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/spi"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
107 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/timer"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
108 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/uart"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
109 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/ulpd"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
110 CPPFLAGS="$CPPFLAGS -I$SRC/cs/system"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
111 CPPFLAGS="$CPPFLAGS -I$SRC/cs/layer1/include"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
112 CPPFLAGS="$CPPFLAGS -I$SRC/cs/services"
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
113
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
114 # Source modules
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
115
431
b006702b48ca components/icn-tcs3: recipe created, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents: 419
diff changeset
116 SRCDIR=$SRC/ui3/bmi/Icons
124
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
117
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
118 cfile_str2ind $SRCDIR/IcnAniPhone.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
119 cfile_str2ind $SRCDIR/IcnBattery.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
120 cfile_str2ind $SRCDIR/IcnBgdSquares.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
121 cfile_str2ind $SRCDIR/IcnBgdTI.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
122 cfile_str2ind $SRCDIR/IcnCallBackGround.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
123 cfile_str2ind $SRCDIR/IcnCipher.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
124 cfile_str2ind $SRCDIR/IcnDefs.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
125 cfile_str2ind $SRCDIR/IcnForward.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
126 cfile_str2ind $SRCDIR/IcnGprs.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
127 cfile_str2ind $SRCDIR/IcnHomezone.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
128 cfile_str2ind $SRCDIR/IcnKeylock.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
129 cfile_str2ind $SRCDIR/IcnLogoTI.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
130 cfile_str2ind $SRCDIR/IcnMainApp.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
131 cfile_str2ind $SRCDIR/IcnMainDiv.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
132 cfile_str2ind $SRCDIR/IcnMainMsg.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
133 cfile_str2ind $SRCDIR/IcnMainPhb.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
134 cfile_str2ind $SRCDIR/IcnMainRcl.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
135 cfile_str2ind $SRCDIR/IcnMainSec.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
136 cfile_str2ind $SRCDIR/IcnMainSet.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
137 cfile_str2ind $SRCDIR/IcnMainStk.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
138 cfile_str2ind $SRCDIR/IcnMainWap.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
139 cfile_str2ind $SRCDIR/IcnMessage.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
140 cfile_str2ind $SRCDIR/IcnNetBouygues.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
141 cfile_str2ind $SRCDIR/IcnNetChinamobile.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
142 cfile_str2ind $SRCDIR/IcnNetFareast.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
143 cfile_str2ind $SRCDIR/IcnNetorange.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
144 cfile_str2ind $SRCDIR/IcnNetSFR.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
145 cfile_str2ind $SRCDIR/IcnNetsonofon.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
146 cfile_str2ind $SRCDIR/IcnNetTMobile.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
147 cfile_str2ind $SRCDIR/IcnNetVodafone.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
148 cfile_str2ind $SRCDIR/IcnNetVodafoneD2.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
149 cfile_str2ind $SRCDIR/IcnPopupBgd.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
150 cfile_str2ind $SRCDIR/IcnSignal.c
61f9999385c0 icn.lib compiles
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
151 cfile_str2ind $SRCDIR/IcnVoicemail.c