FreeCalypso > hg > fc-magnetite
annotate components/ss @ 680:ee3ac8c617cb
armio.c: set GPIO2 output high initially
On TI-canonical platforms GPIO2 is DCD modem control output. In TI's
original code the AI_InitIOConfig() function called from Init_Target()
would configure GPIO2 as an output and set the initial output value to
low, but then the init code in uartfax.c called from Init_Serial_Flows()
would immediately change it to high, corresponding to DCD not asserted.
The result is a momentary asserted-state glitch on the DCD output.
The present change eliminates this glitch, setting DCD output to
not-asserted initially like it should be.
author | Mychaela Falconia <falcon@freecalypso.org> |
---|---|
date | Thu, 25 Jun 2020 03:17:43 +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 |