annotate rvinterf/etmsync/Makefile @ 1014:961efadd530a default tip

fc-shell TCH DL handler: add support for CSD modes TCH DL capture mechanism in FC Tourmaline firmware has been extended to support CSD modes in addition to speech - add the necessary support on the host tools side. It needs to be noted that this mechanism in its present state does NOT provide the debug utility value that was sought: as we learned only after the code was implemented, TI's DSP has a misfeature in that the buffer we are reading (a_dd_0[]) is zeroed out when the IDS block is enabled, i.e., we are reading all zeros and not the real DL bits we were after. But since the code has already been written, we are keeping it - perhaps we can do some tests with IDS disabled.
author Mychaela Falconia <falcon@freecalypso.org>
date Tue, 26 Nov 2024 06:27:43 +0000
parents 379574e5cf5e
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
e7502631a0f9 initial import from freecalypso-sw rev 1033:5ab737ac3ad7
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
1 CC= gcc
470
1d5bd9a06781 rvinterf tree Makefiles: split CPPFLAGS from CFLAGS
Mychaela Falconia <falcon@freecalypso.org>
parents: 420
diff changeset
2 CFLAGS= -O2
1d5bd9a06781 rvinterf tree Makefiles: split CPPFLAGS from CFLAGS
Mychaela Falconia <falcon@freecalypso.org>
parents: 420
diff changeset
3 CPPFLAGS=-I../include
278
31d056f37647 fc-readcal written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents: 276
diff changeset
4 PROGS= fc-dspapidump fc-fsio fc-memdump fc-readcal fc-tmsync
473
90d7c360a614 main tree Makefile hierarchy: INSTALL_PREFIX= scheme implemented
Mychaela Falconia <falcon@freecalypso.org>
parents: 470
diff changeset
5
90d7c360a614 main tree Makefile hierarchy: INSTALL_PREFIX= scheme implemented
Mychaela Falconia <falcon@freecalypso.org>
parents: 470
diff changeset
6 INSTALL_PREFIX= /opt/freecalypso
90d7c360a614 main tree Makefile hierarchy: INSTALL_PREFIX= scheme implemented
Mychaela Falconia <falcon@freecalypso.org>
parents: 470
diff changeset
7
90d7c360a614 main tree Makefile hierarchy: INSTALL_PREFIX= scheme implemented
Mychaela Falconia <falcon@freecalypso.org>
parents: 470
diff changeset
8 INSTBIN=${INSTALL_PREFIX}/bin
90d7c360a614 main tree Makefile hierarchy: INSTALL_PREFIX= scheme implemented
Mychaela Falconia <falcon@freecalypso.org>
parents: 470
diff changeset
9 INSTHELP=${INSTALL_PREFIX}/helpfiles
0
e7502631a0f9 initial import from freecalypso-sw rev 1033:5ab737ac3ad7
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
10
420
322e75a1c8b9 rvinterf/etmsync converted to use libinterf
Mychaela Falconia <falcon@freecalypso.org>
parents: 323
diff changeset
11 LIBINTERF= ../libinterf/libinterf.a
286
88a4ebed160d fc-tmsync converted to link with librftab
Mychaela Falconia <falcon@freecalypso.org>
parents: 278
diff changeset
12 LIBRFTAB= ../../librftab/librftab.a
88a4ebed160d fc-tmsync converted to link with librftab
Mychaela Falconia <falcon@freecalypso.org>
parents: 278
diff changeset
13
420
322e75a1c8b9 rvinterf/etmsync converted to use libinterf
Mychaela Falconia <falcon@freecalypso.org>
parents: 323
diff changeset
14 DSPDUMP_OBJS= dspapidump.o interf.o memops.o simplemain.o ${LIBINTERF}
322e75a1c8b9 rvinterf/etmsync converted to use libinterf
Mychaela Falconia <falcon@freecalypso.org>
parents: 323
diff changeset
15
594
2c75cf810146 fc-fsio: cleandir command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents: 473
diff changeset
16 FSIO_OBJS= cl_des.o cleandir.o dispatch.o fdcmd.o fileio.o fsbasics.o \
2c75cf810146 fc-fsio: cleandir command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents: 473
diff changeset
17 fscmdtab.o fserr.o fsiomain.o fsmisc.o fsnew.o fspath.o \
2c75cf810146 fc-fsio: cleandir command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents: 473
diff changeset
18 fsread.o fsupload.o fsuploadrf.o fswrite.o help.o hostmkdir.o \
2c75cf810146 fc-fsio: cleandir command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents: 473
diff changeset
19 interf.o memcmd.o memops.o pirimei.o pirmagnetite.o rfcap.o \
2c75cf810146 fc-fsio: cleandir command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents: 473
diff changeset
20 stddirs.o symlink.o ${LIBINTERF} ${LIBRFTAB}
0
e7502631a0f9 initial import from freecalypso-sw rev 1033:5ab737ac3ad7
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
21
420
322e75a1c8b9 rvinterf/etmsync converted to use libinterf
Mychaela Falconia <falcon@freecalypso.org>
parents: 323
diff changeset
22 MEMDUMP_OBJS= interf.o memdump.o memops.o ${LIBINTERF}
322e75a1c8b9 rvinterf/etmsync converted to use libinterf
Mychaela Falconia <falcon@freecalypso.org>
parents: 323
diff changeset
23
322e75a1c8b9 rvinterf/etmsync converted to use libinterf
Mychaela Falconia <falcon@freecalypso.org>
parents: 323
diff changeset
24 READCAL_OBJS= hostmkdir.o interf.o l1tmops.o readcal.o ${LIBINTERF}
0
e7502631a0f9 initial import from freecalypso-sw rev 1033:5ab737ac3ad7
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
25
420
322e75a1c8b9 rvinterf/etmsync converted to use libinterf
Mychaela Falconia <falcon@freecalypso.org>
parents: 323
diff changeset
26 TMSYNC_OBJS= cl_des.o dispatch.o interf.o l1tmcmd.o l1tmops.o memcmd.o \
841
379574e5cf5e fc-tmsync aur command implemented
Mychaela Falconia <falcon@freecalypso.org>
parents: 594
diff changeset
27 memops.o piradccal.o pirimei.o tmsaur.o tmscmdtab.o tmsmain.o \
420
322e75a1c8b9 rvinterf/etmsync converted to use libinterf
Mychaela Falconia <falcon@freecalypso.org>
parents: 323
diff changeset
28 ${LIBINTERF} ${LIBRFTAB}
269
20ed7a320b12 fc-tmsync skeleton started
Mychaela Falconia <falcon@freecalypso.org>
parents: 153
diff changeset
29
0
e7502631a0f9 initial import from freecalypso-sw rev 1033:5ab737ac3ad7
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
30 all: ${PROGS}
e7502631a0f9 initial import from freecalypso-sw rev 1033:5ab737ac3ad7
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
31
e7502631a0f9 initial import from freecalypso-sw rev 1033:5ab737ac3ad7
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
32 fc-dspapidump: ${DSPDUMP_OBJS}
e7502631a0f9 initial import from freecalypso-sw rev 1033:5ab737ac3ad7
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
33 ${CC} ${CFLAGS} -o $@ ${DSPDUMP_OBJS}
e7502631a0f9 initial import from freecalypso-sw rev 1033:5ab737ac3ad7
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
34
e7502631a0f9 initial import from freecalypso-sw rev 1033:5ab737ac3ad7
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
35 fc-fsio: ${FSIO_OBJS}
e7502631a0f9 initial import from freecalypso-sw rev 1033:5ab737ac3ad7
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
36 ${CC} ${CFLAGS} -o $@ ${FSIO_OBJS}
e7502631a0f9 initial import from freecalypso-sw rev 1033:5ab737ac3ad7
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
37
153
9925fba699be fc-olddump replaced with fc-memdump
Mychaela Falconia <falcon@freecalypso.org>
parents: 49
diff changeset
38 fc-memdump: ${MEMDUMP_OBJS}
9925fba699be fc-olddump replaced with fc-memdump
Mychaela Falconia <falcon@freecalypso.org>
parents: 49
diff changeset
39 ${CC} ${CFLAGS} -o $@ ${MEMDUMP_OBJS}
0
e7502631a0f9 initial import from freecalypso-sw rev 1033:5ab737ac3ad7
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
40
278
31d056f37647 fc-readcal written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents: 276
diff changeset
41 fc-readcal: ${READCAL_OBJS}
31d056f37647 fc-readcal written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents: 276
diff changeset
42 ${CC} ${CFLAGS} -o $@ ${READCAL_OBJS}
31d056f37647 fc-readcal written, compiles
Mychaela Falconia <falcon@freecalypso.org>
parents: 276
diff changeset
43
269
20ed7a320b12 fc-tmsync skeleton started
Mychaela Falconia <falcon@freecalypso.org>
parents: 153
diff changeset
44 fc-tmsync: ${TMSYNC_OBJS}
20ed7a320b12 fc-tmsync skeleton started
Mychaela Falconia <falcon@freecalypso.org>
parents: 153
diff changeset
45 ${CC} ${CFLAGS} -o $@ ${TMSYNC_OBJS}
20ed7a320b12 fc-tmsync skeleton started
Mychaela Falconia <falcon@freecalypso.org>
parents: 153
diff changeset
46
0
e7502631a0f9 initial import from freecalypso-sw rev 1033:5ab737ac3ad7
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
47 install: ${PROGS}
e7502631a0f9 initial import from freecalypso-sw rev 1033:5ab737ac3ad7
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
48 mkdir -p ${INSTBIN}
e7502631a0f9 initial import from freecalypso-sw rev 1033:5ab737ac3ad7
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
49 install -c ${PROGS} ${INSTBIN}
25
75cd626cf379 rvinterf/etmsync/Makefile: install fsio.help
Mychaela Falconia <falcon@freecalypso.org>
parents: 16
diff changeset
50 mkdir -p ${INSTHELP}
26
b301b75de0e0 install misc files into /usr/local/share/freecalypso as non-executable
Mychaela Falconia <falcon@freecalypso.org>
parents: 25
diff changeset
51 install -c -m 644 fsio.help ${INSTHELP}
0
e7502631a0f9 initial import from freecalypso-sw rev 1033:5ab737ac3ad7
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
52
e7502631a0f9 initial import from freecalypso-sw rev 1033:5ab737ac3ad7
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
53 clean:
e7502631a0f9 initial import from freecalypso-sw rev 1033:5ab737ac3ad7
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
54 rm -f *.o *.out *errs ${PROGS}