FreeCalypso > hg > fc-magnetite
annotate components/ppp_ir @ 695:530f71d65c20
uartfax.c: pull from Tourmaline (GTM900 RI output)
In addition to the primary intent of bringing in GTM900 RI output support,
pulling uartfax.c wholesale from Tourmaline also changes the initial_time
argument in the two NU_Create_Timer() calls from 0 to 1. This change
is required for the new version of Nucleus used in Tourmaline and Selenite
(and apparently also used by TI in LoCosto), and it is harmless (no effect)
for the original TCS211 version of Nucleus used in Magnetite.
The new philosophical model being adopted is that Tourmaline is our new
development head firmware, whereas Magnetite will now be maintained
similarly to how Linux maintainers treat stable kernels: changes will be
backported from Tourmaline if they are deemed appropriate for stable
modem firmware.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sat, 24 Oct 2020 17:33:10 +0000 |
parents | ad7f986afae3 |
children |
rev | line source |
---|---|
182 | 1 # Building ppp_ir.lib from the TCS3.2 source |
2 | |
3 CFLAGS="-me -mt -o -pw2 -x -mw" | |
4 | |
5 # Defines | |
6 | |
7 CPPFLAGS=-DCCDTABLES_EXTERN | |
8 CPPFLAGS="$CPPFLAGS -DOPTION_MULTITHREAD" | |
9 CPPFLAGS="$CPPFLAGS -DNEW_FRAME" | |
10 CPPFLAGS="$CPPFLAGS -DNEW_ENTITY" | |
11 CPPFLAGS="$CPPFLAGS -D_TARGET_" | |
12 CPPFLAGS="$CPPFLAGS -DSHARED_VSI" | |
13 CPPFLAGS="$CPPFLAGS -DALR" | |
14 CPPFLAGS="$CPPFLAGS -DFF_HOMEZONE" | |
15 CPPFLAGS="$CPPFLAGS -DFF_MMI_SAT_ICON" | |
16 CPPFLAGS="$CPPFLAGS -DFF_MMI_SMS_DYNAMIC" | |
17 CPPFLAGS="$CPPFLAGS -DFF_CPHS" | |
18 CPPFLAGS="$CPPFLAGS -D_TMS470" | |
19 CPPFLAGS="$CPPFLAGS -DUART" | |
20 CPPFLAGS="$CPPFLAGS -DFF_ATI" | |
21 CPPFLAGS="$CPPFLAGS -DNWARN" | |
22 CPPFLAGS="$CPPFLAGS -DFF_EM_MODE" | |
23 CPPFLAGS="$CPPFLAGS -DPHONEBOOK_EXTENSION" | |
24 | |
25 if [ "$GPRS" = 1 ] | |
26 then | |
27 CPPFLAGS="$CPPFLAGS -DGPRS" | |
28 fi | |
29 | |
30 CPPFLAGS="$CPPFLAGS -DAT_INTERPRETER" | |
31 CPPFLAGS="$CPPFLAGS -DUSE_L1FD_FUNC_INTERFACE" | |
32 | |
33 if [ "$SRVC" != 0 ] | |
34 then | |
35 CPPFLAGS="$CPPFLAGS -DFAX_AND_DATA" | |
36 if [ "$SRVC" = 1 ] | |
37 then | |
38 CPPFLAGS="$CPPFLAGS -DFF_FAX" | |
39 fi | |
40 CPPFLAGS="$CPPFLAGS -DUSE_L2FD_FUNC_INTERFACE" | |
41 fi | |
42 | |
43 CPPFLAGS="$CPPFLAGS -DSRVC=$SRVC" | |
44 CPPFLAGS="$CPPFLAGS -DDTI2" | |
45 CPPFLAGS="$CPPFLAGS -DDTILIB" | |
46 CPPFLAGS="$CPPFLAGS -DPPP_INT_RAM" | |
482
ad7f986afae3
pass -DCHIPSET and -DBOARD for all TCS3.2 components
Mychaela Falconia <falcon@freecalypso.org>
parents:
182
diff
changeset
|
47 CPPFLAGS="$CPPFLAGS -DCHIPSET=$CHIPSET" |
ad7f986afae3
pass -DCHIPSET and -DBOARD for all TCS3.2 components
Mychaela Falconia <falcon@freecalypso.org>
parents:
182
diff
changeset
|
48 CPPFLAGS="$CPPFLAGS -DBOARD=41" |
182 | 49 |
50 # Includes | |
51 | |
52 SRCDIR=$SRC/g23m-fad/ppp | |
53 | |
54 CPPFLAGS="$CPPFLAGS -I$SRC/$CONDAT/com/inc" | |
55 CPPFLAGS="$CPPFLAGS -I$SRC/$GPF/inc" | |
56 CPPFLAGS="$CPPFLAGS -I$SRC/$CONDAT/com/include" | |
57 CPPFLAGS="$CPPFLAGS -I../../$CDGINC" | |
58 CPPFLAGS="$CPPFLAGS -I$SRCDIR" | |
59 CPPFLAGS="$CPPFLAGS -I../../$CDGPRIM" | |
60 CPPFLAGS="$CPPFLAGS -I.." | |
61 CPPFLAGS="$CPPFLAGS -I../config" | |
62 | |
63 # Source modules | |
64 | |
65 cfile_str2ind $SRCDIR/ppp_frxf.c | |
66 cfile_str2ind $SRCDIR/ppp_ftxf.c | |
67 cfile_str2ind $SRCDIR/ppp_tbls.c |