FreeCalypso > hg > fc-magnetite
annotate components/rr @ 636:57e67ca2e1cb
pcmdata.c: default +CGMI to "FreeCalypso" and +CGMM to model
The present change has no effect whatsoever on Falconia-made and Openmoko-made
devices on which /pcm/CGMI and /pcm/CGMM files have been programmed in FFS
with sensible ID strings by the respective factories, but what should AT+CGMI
and AT+CGMM queries return when the device is a Huawei GTM900 or Tango modem
that has been converted to FreeCalypso with a firmware change? Before the
present change they would return compiled-in defaults of "<manufacturer>" and
"<model>", respectively; with the present change the firmware will self-identify
as "FreeCalypso GTM900-FC" or "FreeCalypso Tango" on the two respective targets.
This firmware identification will become important if someone incorporates an
FC-converted GTM900 or Tango modem into a ZeroPhone-style smartphone where some
high-level software like ofono will be talking to the modem and will need to
properly identify this modem as FreeCalypso, as opposed to some other AT command
modem flavor with different quirks.
In technical terms, the compiled-in default for the AT+CGMI query (which will
always be overridden by the /pcm/CGMI file in FFS if one is present) is now
"FreeCalypso" in all configs on all targets; the compiled-in default for the
AT+CGMM query (likewise always overridden by /pcm/CGMM if present) is
"GTM900-FC" if CONFIG_TARGET_GTM900 or "Tango" if CONFIG_TARGET_TANGO or the
original default of "<model>" otherwise.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sun, 19 Jan 2020 20:14:58 +0000 |
parents | ad7f986afae3 |
children |
rev | line source |
---|---|
158 | 1 # Building rr.lib from the TCS3.2 source |
2 | |
3 CFLAGS="-me -mt -o -pw2 -x -mw" | |
4 CPPFLAGS= | |
5 | |
6 make_version rr | |
7 cfile_plain rr_version.c | |
8 | |
9 # Defines | |
10 | |
11 CPPFLAGS=-DCCDTABLES_EXTERN | |
12 CPPFLAGS="$CPPFLAGS -DOPTION_MULTITHREAD" | |
13 CPPFLAGS="$CPPFLAGS -DNEW_FRAME" | |
14 CPPFLAGS="$CPPFLAGS -DNEW_ENTITY" | |
15 CPPFLAGS="$CPPFLAGS -D_TARGET_" | |
16 CPPFLAGS="$CPPFLAGS -DSHARED_VSI" | |
17 CPPFLAGS="$CPPFLAGS -DALR" | |
18 CPPFLAGS="$CPPFLAGS -DFF_HOMEZONE" | |
19 CPPFLAGS="$CPPFLAGS -DFF_MMI_SAT_ICON" | |
20 CPPFLAGS="$CPPFLAGS -DFF_MMI_SMS_DYNAMIC" | |
21 CPPFLAGS="$CPPFLAGS -DFF_CPHS" | |
22 CPPFLAGS="$CPPFLAGS -D_TMS470" | |
23 CPPFLAGS="$CPPFLAGS -DUART" | |
24 CPPFLAGS="$CPPFLAGS -DFF_ATI" | |
25 CPPFLAGS="$CPPFLAGS -DNWARN" | |
26 CPPFLAGS="$CPPFLAGS -DFF_EM_MODE" | |
27 CPPFLAGS="$CPPFLAGS -DMMI=$MMI" | |
28 | |
29 if [ "$MMI" = 0 ] | |
30 then | |
31 CPPFLAGS="$CPPFLAGS -DACI" | |
32 elif [ "$MMI" = 2 ] | |
33 then | |
34 CPPFLAGS="$CPPFLAGS -DMFW" | |
35 fi | |
36 | |
37 CPPFLAGS="$CPPFLAGS -DPHONEBOOK_EXTENSION" | |
38 | |
39 if [ "$GPRS" = 1 ] | |
40 then | |
41 CPPFLAGS="$CPPFLAGS -DGPRS" | |
42 fi | |
43 | |
44 CPPFLAGS="$CPPFLAGS -DAT_INTERPRETER" | |
45 CPPFLAGS="$CPPFLAGS -DUSE_L1FD_FUNC_INTERFACE" | |
46 | |
47 if [ "$SRVC" != 0 ] | |
48 then | |
49 CPPFLAGS="$CPPFLAGS -DFAX_AND_DATA" | |
50 if [ "$SRVC" = 1 ] | |
51 then | |
52 CPPFLAGS="$CPPFLAGS -DFF_FAX" | |
53 fi | |
54 CPPFLAGS="$CPPFLAGS -DUSE_L2FD_FUNC_INTERFACE" | |
55 fi | |
56 | |
57 CPPFLAGS="$CPPFLAGS -DSRVC=$SRVC" | |
482
ad7f986afae3
pass -DCHIPSET and -DBOARD for all TCS3.2 components
Mychaela Falconia <falcon@freecalypso.org>
parents:
158
diff
changeset
|
58 CPPFLAGS="$CPPFLAGS -DCHIPSET=$CHIPSET" |
ad7f986afae3
pass -DCHIPSET and -DBOARD for all TCS3.2 components
Mychaela Falconia <falcon@freecalypso.org>
parents:
158
diff
changeset
|
59 CPPFLAGS="$CPPFLAGS -DBOARD=41" |
158 | 60 |
61 # Includes | |
62 | |
63 SRCDIR=$SRC/g23m-gsm/rr | |
64 | |
65 CPPFLAGS="$CPPFLAGS -I$SRC/$CONDAT/com/inc" | |
66 CPPFLAGS="$CPPFLAGS -I$SRC/$GPF/inc" | |
67 CPPFLAGS="$CPPFLAGS -I$SRC/$CONDAT/com/include" | |
68 CPPFLAGS="$CPPFLAGS -I../../$CDGINC" | |
69 CPPFLAGS="$CPPFLAGS -I../../$CDGPRIM" | |
70 CPPFLAGS="$CPPFLAGS -I$SRCDIR" | |
71 CPPFLAGS="$CPPFLAGS -I.." | |
72 CPPFLAGS="$CPPFLAGS -I../config" | |
73 CPPFLAGS="$CPPFLAGS -I$SRC/cs/riviera" | |
74 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_app" | |
75 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core" | |
76 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/abb" | |
77 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/armio" | |
78 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/clkm" | |
79 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/conf" | |
80 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/dma" | |
81 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/dsp_dwnld" | |
82 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/inth" | |
83 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/memif" | |
84 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/rhea" | |
85 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/security" | |
86 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/spi" | |
87 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/timer" | |
88 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/uart" | |
89 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/ulpd" | |
90 CPPFLAGS="$CPPFLAGS -I$SRC/cs/system" | |
91 CPPFLAGS="$CPPFLAGS -I$SRC/cs/layer1/include" | |
92 CPPFLAGS="$CPPFLAGS -I$SRC/cs/services" | |
93 | |
94 # Source modules | |
95 | |
96 cfile_str2ind $SRCDIR/rr_attf.c | |
97 cfile_str2ind $SRCDIR/rr_attp.c | |
98 cfile_str2ind $SRCDIR/rr_atts.c | |
99 cfile_str2ind $SRCDIR/rr_datf.c | |
100 cfile_str2ind $SRCDIR/rr_datp.c | |
101 cfile_str2ind $SRCDIR/rr_dats.c | |
102 cfile_str2ind $SRCDIR/rr_forf.c | |
103 cfile_str2ind $SRCDIR/rr_forp.c | |
104 cfile_str2ind $SRCDIR/rr_fors.c | |
105 cfile_str2ind $SRCDIR/rr_csf.c | |
106 cfile_str2ind $SRCDIR/rr_pei.c | |
107 cfile_str2ind $SRCDIR/rr_srv.c | |
108 cfile_str2ind $SRCDIR/rr_tim.c | |
109 cfile_str2ind $SRCDIR/rr_cs.c | |
110 | |
111 if [ "$GPRS" = 1 ] | |
112 then | |
113 cfile_str2ind $SRCDIR/rr_gprs.c | |
114 cfile_str2ind $SRCDIR/rr_datg.c | |
115 cfile_str2ind $SRCDIR/rr_attg.c | |
116 fi | |
117 | |
118 cfile_str2ind $SRCDIR/rr_em.c |