FreeCalypso > hg > fc-magnetite
annotate components/uart_drv @ 702:9394305d4ff5 default tip
etm_audio.c: fix off-by-one error in auw of FIR coefficients
This fix was already made in FC Tourmaline a while back, but it is also
the kind of bugfix that deserves to be backported to Magnetite and
Selenite as well.
| author | Mychaela Falconia <falcon@freecalypso.org> | 
|---|---|
| date | Mon, 31 Oct 2022 00:14:44 +0000 | 
| parents | 6d1eac845d3e | 
| children | 
| rev | line source | 
|---|---|
| 51 | 1 # Building uart_drv.lib | 
| 2 | |
| 3 CFLAGS="-mn -mt -o -x -mw -me -pw2" | |
| 4 CPPFLAGS="-DTOOL_CHOICE=0 -D_TMS470" | |
| 5 | |
| 307 
6d1eac845d3e
make it possible to enable SERIAL_DYNAMIC_SWITCH on the configure.sh line
 Mychaela Falconia <falcon@freecalypso.org> parents: 
51diff
changeset | 6 if [ "$SERIAL_DYNAMIC_SWITCH" = 1 ] | 
| 
6d1eac845d3e
make it possible to enable SERIAL_DYNAMIC_SWITCH on the configure.sh line
 Mychaela Falconia <falcon@freecalypso.org> parents: 
51diff
changeset | 7 then | 
| 
6d1eac845d3e
make it possible to enable SERIAL_DYNAMIC_SWITCH on the configure.sh line
 Mychaela Falconia <falcon@freecalypso.org> parents: 
51diff
changeset | 8 CPPFLAGS="$CPPFLAGS -DSERIAL_DYNAMIC_SWITCH" | 
| 
6d1eac845d3e
make it possible to enable SERIAL_DYNAMIC_SWITCH on the configure.sh line
 Mychaela Falconia <falcon@freecalypso.org> parents: 
51diff
changeset | 9 fi | 
| 
6d1eac845d3e
make it possible to enable SERIAL_DYNAMIC_SWITCH on the configure.sh line
 Mychaela Falconia <falcon@freecalypso.org> parents: 
51diff
changeset | 10 | 
| 51 | 11 # Includes | 
| 12 | |
| 13 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_app" | |
| 14 CPPFLAGS="$CPPFLAGS -I$SRC/cs/os/nucleus" | |
| 15 CPPFLAGS="$CPPFLAGS -I.." | |
| 16 CPPFLAGS="$CPPFLAGS -I../config" | |
| 17 CPPFLAGS="$CPPFLAGS -I$SRC/$GPF/inc" | |
| 18 CPPFLAGS="$CPPFLAGS -I$SRC/$GPF/frame/cust_os" | |
| 19 CPPFLAGS="$CPPFLAGS -I$SRC/cs/system" | |
| 20 CPPFLAGS="$CPPFLAGS -I$SRC/cs/riviera" | |
| 21 CPPFLAGS="$CPPFLAGS -I$SRC/cs/riviera/rv" | |
| 22 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core" | |
| 23 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/abb" | |
| 24 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/armio" | |
| 25 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/clkm" | |
| 26 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/conf" | |
| 27 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/dma" | |
| 28 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/dsp_dwnld" | |
| 29 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/inth" | |
| 30 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/memif" | |
| 31 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/rhea" | |
| 32 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/security" | |
| 33 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/spi" | |
| 34 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/timer" | |
| 35 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/uart" | |
| 36 CPPFLAGS="$CPPFLAGS -I$SRC/cs/drivers/drv_core/ulpd" | |
| 37 CPPFLAGS="$CPPFLAGS -I$SRC/cs/services" | |
| 38 | |
| 39 # Source modules | |
| 40 | |
| 41 SRCDIR=$SRC/cs/drivers/drv_app/uart | |
| 42 | |
| 43 cfile_plain $SRCDIR/serialswitch.c | |
| 44 cfile_plain $SRCDIR/uartfax.c | 
