FreeCalypso > hg > fc-magnetite
annotate components/ss @ 632:d968a3216ba0
new tangomdm build target
TCS211/Magnetite built for target leonardo runs just fine on the Tango-based
Caramel board, but a more proper tangomdm build target is preferable in order
to better market these Tango modems to prospective commercial customers. The
only differences are in GPIO and MCSI config:
* MCSI is enabled in the tangomdm build config.
* GPIO 1 is loudspeaker amplifier control on Leonardo, but on Tango platforms
it can be used for anything. On Caramel boards this GPIO should be
configured as an output driving high.
* GPIO 2 needs to be configured as Calypso input on Leonardo, but on Tango
platforms it can be used for anything. On Caramel boards this GPIO should be
configured as an output, either high or low is OK.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Sat, 04 Jan 2020 19:27:41 +0000 |
parents | ad7f986afae3 |
children |
rev | line source |
---|---|
161 | 1 # Building ss.lib from the TCS3.2 source |
2 | |
3 CFLAGS="-me -mt -o -pw2 -x -mw" | |
4 CPPFLAGS= | |
5 | |
6 make_version ss | |
7 cfile_plain ss_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 | |
482
ad7f986afae3
pass -DCHIPSET and -DBOARD for all TCS3.2 components
Mychaela Falconia <falcon@freecalypso.org>
parents:
161
diff
changeset
|
44 CPPFLAGS="$CPPFLAGS -DCHIPSET=$CHIPSET" |
ad7f986afae3
pass -DCHIPSET and -DBOARD for all TCS3.2 components
Mychaela Falconia <falcon@freecalypso.org>
parents:
161
diff
changeset
|
45 CPPFLAGS="$CPPFLAGS -DBOARD=41" |
ad7f986afae3
pass -DCHIPSET and -DBOARD for all TCS3.2 components
Mychaela Falconia <falcon@freecalypso.org>
parents:
161
diff
changeset
|
46 |
161 | 47 # Includes |
48 | |
49 SRCDIR=$SRC/g23m-gsm/ss | |
50 | |
51 CPPFLAGS="$CPPFLAGS -I$SRC/$CONDAT/com/inc" | |
52 CPPFLAGS="$CPPFLAGS -I$SRC/$GPF/inc" | |
53 CPPFLAGS="$CPPFLAGS -I$SRC/$CONDAT/com/include" | |
54 CPPFLAGS="$CPPFLAGS -I../../$CDGINC" | |
55 CPPFLAGS="$CPPFLAGS -I$SRCDIR" | |
56 CPPFLAGS="$CPPFLAGS -I.." | |
57 CPPFLAGS="$CPPFLAGS -I../config" | |
58 | |
59 # Source modules | |
60 | |
61 cfile_str2ind $SRCDIR/ss_csf.c | |
62 cfile_str2ind $SRCDIR/ss_for.c | |
63 cfile_str2ind $SRCDIR/ss_pei.c | |
64 cfile_str2ind $SRCDIR/ss_ss.c | |
65 cfile_str2ind $SRCDIR/ss_em.c |