FreeCalypso > hg > fc-magnetite
annotate components/dti @ 700:800bf29abf31
audio mode load change from Tourmaline
Our FreeCalypso universe now has two kinds of audio mode config files:
the old 164 byte kind and the new 176 byte kind. We are not enabling
L1_NEW_AEC in Magnetite, only in Tourmaline, thus 164 byte audio mode
files are still native to Magnetite. But we still desire graceful
handling of the situation when a running Magnetite fw may load a
176 byte audio mode file (presumably with new AEC config), thus we
incorporate the same audio mode loading change which we implemented
in Tourmaline: if the loaded audio mode file is of the wrong kind,
the AEC config is cleared to default disabled state.
| author | Mychaela Falconia <falcon@freecalypso.org> |
|---|---|
| date | Fri, 30 Jul 2021 03:55:52 +0000 |
| parents | ad7f986afae3 |
| children |
| rev | line source |
|---|---|
| 171 | 1 # Building dti.lib from the TCS3.2 source |
| 2 | |
| 3 CFLAGS="-me -mt -o -pw2 -x -mw" | |
| 4 CPPFLAGS= | |
| 5 | |
| 6 make_version dti | |
| 7 cfile_plain dti_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 -DDTI2" | |
| 38 CPPFLAGS="$CPPFLAGS -DPHONEBOOK_EXTENSION" | |
| 39 | |
| 40 if [ "$GPRS" = 1 ] | |
| 41 then | |
| 42 CPPFLAGS="$CPPFLAGS -DGPRS" | |
| 43 fi | |
| 44 | |
|
482
ad7f986afae3
pass -DCHIPSET and -DBOARD for all TCS3.2 components
Mychaela Falconia <falcon@freecalypso.org>
parents:
172
diff
changeset
|
45 CPPFLAGS="$CPPFLAGS -DCHIPSET=$CHIPSET" |
|
ad7f986afae3
pass -DCHIPSET and -DBOARD for all TCS3.2 components
Mychaela Falconia <falcon@freecalypso.org>
parents:
172
diff
changeset
|
46 CPPFLAGS="$CPPFLAGS -DBOARD=41" |
|
ad7f986afae3
pass -DCHIPSET and -DBOARD for all TCS3.2 components
Mychaela Falconia <falcon@freecalypso.org>
parents:
172
diff
changeset
|
47 |
| 171 | 48 # Includes |
| 49 | |
| 50 SRCDIR=$SRC/g23m-aci/dti | |
| 51 | |
| 52 CPPFLAGS="$CPPFLAGS -I$SRC/$CONDAT/com/inc" | |
| 53 CPPFLAGS="$CPPFLAGS -I$SRC/$GPF/inc" | |
| 54 CPPFLAGS="$CPPFLAGS -I$SRC/$CONDAT/com/include" | |
| 55 CPPFLAGS="$CPPFLAGS -I../../$CDGINC" | |
| 56 CPPFLAGS="$CPPFLAGS -I$SRCDIR" | |
|
172
2c61607bb3e3
build system: pass ACI version for headers to the component recipes
Mychaela Falconia <falcon@freecalypso.org>
parents:
171
diff
changeset
|
57 CPPFLAGS="$CPPFLAGS -I$SRC/$ACI/aci_dti_mng" |
| 171 | 58 CPPFLAGS="$CPPFLAGS -I.." |
| 59 CPPFLAGS="$CPPFLAGS -I../config" | |
| 60 CPPFLAGS="$CPPFLAGS -I$SRC/cs/riviera" | |
| 61 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_app" | |
| 62 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core" | |
| 63 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/abb" | |
| 64 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/armio" | |
| 65 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/clkm" | |
| 66 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/conf" | |
| 67 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/dma" | |
| 68 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/dsp_dwnld" | |
| 69 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/inth" | |
| 70 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/memif" | |
| 71 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/rhea" | |
| 72 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/security" | |
| 73 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/spi" | |
| 74 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/timer" | |
| 75 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/uart" | |
| 76 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/ulpd" | |
| 77 CPPFLAGS="$CPPFLAGS -I$SRC/cs/system" | |
| 78 CPPFLAGS="$CPPFLAGS -I$SRC/cs/layer1/include" | |
| 79 CPPFLAGS="$CPPFLAGS -I$SRC/cs/services" | |
| 80 | |
| 81 # Source modules | |
| 82 | |
| 83 cfile_str2ind $SRCDIR/dti_kerf.c | |
| 84 cfile_str2ind $SRCDIR/dti_kerp.c | |
| 85 cfile_str2ind $SRCDIR/dti_int.c |
