annotate trau-decode/Makefile @ 94:f9ef582c199c

tfo-ut: check in tfo-fr.bin and tfo-efr.bin Each of these binary files is an extract from MSC-side E1 timeslot recording in a Nokia TCSM2 TFO session involving a cross-connect between two TRAU channels. The extracts have been chosen to begin at the point where the TRAU starts emitting TFO frames, thereby beginning with a series of TFO frames that contain an embedded TFO_TRANS message. In each experiment, one of the two cross-connected TRAU channels emitted two "plain" TFO frames (not containing embedded TFO messages) in between the initial embedded TFO_TRANS and the subsequent embedded TFO_REQ_L; this channel was chosen for the present extracts. Each extract is thus 2560 PCM samples, containing 16 aligned TFO frames: 5 carrying TFO_TRANS, 2 plain, 9 carrying TFO_REQ_L.
author Mychaela Falconia <falcon@freecalypso.org>
date Tue, 18 Mar 2025 22:56:23 +0000
parents 5173515e1cc8
children 625be4b2922f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
131e0f1972bb beginning of trau-parse program
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
1 CC= gcc
131e0f1972bb beginning of trau-parse program
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
2 CFLAGS= -O2
75
b518ab15b518 trau-decode: new program trau-hr-dump-hex
Mychaela Falconia <falcon@freecalypso.org>
parents: 74
diff changeset
3 PROGS= dump-1bit tfo-parse-fr16 trau-extr trau-hr-dump trau-hr-dump-hex \
84
5173515e1cc8 trau-decode: new program trau-parse-hex
Mychaela Falconia <falcon@freecalypso.org>
parents: 78
diff changeset
4 trau-parse trau-parse-hex trau-sync8
0
131e0f1972bb beginning of trau-parse program
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
5
78
00fd38c7c8fe trau-decode: factor out parse-amr.c
Mychaela Falconia <falcon@freecalypso.org>
parents: 77
diff changeset
6 FR_OBJS=parse-fr.o parse-fr-common.o parse-efr.o
00fd38c7c8fe trau-decode: factor out parse-amr.c
Mychaela Falconia <falcon@freecalypso.org>
parents: 77
diff changeset
7 HR_OBJS=gsmhr_unpack.o hr-guts.o
00fd38c7c8fe trau-decode: factor out parse-amr.c
Mychaela Falconia <falcon@freecalypso.org>
parents: 77
diff changeset
8
00fd38c7c8fe trau-decode: factor out parse-amr.c
Mychaela Falconia <falcon@freecalypso.org>
parents: 77
diff changeset
9 TRAU16_OBJS= parse-amr.o parse-data.o ${FR_OBJS}
00fd38c7c8fe trau-decode: factor out parse-amr.c
Mychaela Falconia <falcon@freecalypso.org>
parents: 77
diff changeset
10
0
131e0f1972bb beginning of trau-parse program
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
11 all: ${PROGS}
131e0f1972bb beginning of trau-parse program
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
12
27
f508dacf2cf9 trau-decode: new programs dump-1bit and trau-sync8
Mychaela Falconia <falcon@freecalypso.org>
parents: 9
diff changeset
13 dump-1bit: dump-1bit.c
f508dacf2cf9 trau-decode: new programs dump-1bit and trau-sync8
Mychaela Falconia <falcon@freecalypso.org>
parents: 9
diff changeset
14 ${CC} ${CFLAGS} -o $@ $@.c
f508dacf2cf9 trau-decode: new programs dump-1bit and trau-sync8
Mychaela Falconia <falcon@freecalypso.org>
parents: 9
diff changeset
15
78
00fd38c7c8fe trau-decode: factor out parse-amr.c
Mychaela Falconia <falcon@freecalypso.org>
parents: 77
diff changeset
16 tfo-parse-fr16: crc8gen.o parse-tfo16.o ${FR_OBJS}
31
5f98c5cae4ea new program tfo-parse-fr16
Mychaela Falconia <falcon@freecalypso.org>
parents: 28
diff changeset
17 ${CC} ${CFLAGS} -o $@ $^ -lgsmfr2 -lgsmefr
5f98c5cae4ea new program tfo-parse-fr16
Mychaela Falconia <falcon@freecalypso.org>
parents: 28
diff changeset
18
9
0565aaa84b17 trau-decode: implement trau-extr program
Mychaela Falconia <falcon@freecalypso.org>
parents: 5
diff changeset
19 trau-extr: extr-fr.o extr-efr.o extr-main.o
0565aaa84b17 trau-decode: implement trau-extr program
Mychaela Falconia <falcon@freecalypso.org>
parents: 5
diff changeset
20 ${CC} ${CFLAGS} -o $@ $^ -lgsmfr2
0565aaa84b17 trau-decode: implement trau-extr program
Mychaela Falconia <falcon@freecalypso.org>
parents: 5
diff changeset
21
78
00fd38c7c8fe trau-decode: factor out parse-amr.c
Mychaela Falconia <falcon@freecalypso.org>
parents: 77
diff changeset
22 trau-hr-dump: crc8gen.o trau-hr-dump.o ${HR_OBJS}
28
9bcdb091c24d trau-decode: new program trau-hr-dump
Mychaela Falconia <falcon@freecalypso.org>
parents: 27
diff changeset
23 ${CC} ${CFLAGS} -o $@ $^
9bcdb091c24d trau-decode: new program trau-hr-dump
Mychaela Falconia <falcon@freecalypso.org>
parents: 27
diff changeset
24
78
00fd38c7c8fe trau-decode: factor out parse-amr.c
Mychaela Falconia <falcon@freecalypso.org>
parents: 77
diff changeset
25 trau-hr-dump-hex: crc8gen.o trau-hr-dump-hex.o ${HR_OBJS}
75
b518ab15b518 trau-decode: new program trau-hr-dump-hex
Mychaela Falconia <falcon@freecalypso.org>
parents: 74
diff changeset
26 ${CC} ${CFLAGS} -o $@ $^
b518ab15b518 trau-decode: new program trau-hr-dump-hex
Mychaela Falconia <falcon@freecalypso.org>
parents: 74
diff changeset
27
78
00fd38c7c8fe trau-decode: factor out parse-amr.c
Mychaela Falconia <falcon@freecalypso.org>
parents: 77
diff changeset
28 trau-parse: crc8gen.o parse-main.o ${TRAU16_OBJS}
5
bf5c9fb431b8 trau-parse: implement EFR decoding
Mychaela Falconia <falcon@freecalypso.org>
parents: 4
diff changeset
29 ${CC} ${CFLAGS} -o $@ $^ -lgsmfr2 -lgsmefr
0
131e0f1972bb beginning of trau-parse program
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
30
84
5173515e1cc8 trau-decode: new program trau-parse-hex
Mychaela Falconia <falcon@freecalypso.org>
parents: 78
diff changeset
31 trau-parse-hex: crc8gen.o parse-hex16.o ${TRAU16_OBJS}
5173515e1cc8 trau-decode: new program trau-parse-hex
Mychaela Falconia <falcon@freecalypso.org>
parents: 78
diff changeset
32 ${CC} ${CFLAGS} -o $@ $^ -lgsmfr2 -lgsmefr
5173515e1cc8 trau-decode: new program trau-parse-hex
Mychaela Falconia <falcon@freecalypso.org>
parents: 78
diff changeset
33
27
f508dacf2cf9 trau-decode: new programs dump-1bit and trau-sync8
Mychaela Falconia <falcon@freecalypso.org>
parents: 9
diff changeset
34 trau-sync8: trau-sync8.c
f508dacf2cf9 trau-decode: new programs dump-1bit and trau-sync8
Mychaela Falconia <falcon@freecalypso.org>
parents: 9
diff changeset
35 ${CC} ${CFLAGS} -o $@ $@.c
f508dacf2cf9 trau-decode: new programs dump-1bit and trau-sync8
Mychaela Falconia <falcon@freecalypso.org>
parents: 9
diff changeset
36
0
131e0f1972bb beginning of trau-parse program
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
37 clean:
131e0f1972bb beginning of trau-parse program
Mychaela Falconia <falcon@freecalypso.org>
parents:
diff changeset
38 rm -f *.o ${PROGS}