mirror of
https://gitea.osmocom.org/cellular-infrastructure/osmo-trx.git
synced 2025-10-23 00:11:59 +00:00
It just uses the viterbi equalizer and the sigproclib to generate and demodulate bursts and prints the bits, only useful for development. Change-Id: I852e34d9667d1f12f235f8b3da1fcc0d738b2db9
18 lines
548 B
Makefile
18 lines
548 B
Makefile
include $(top_srcdir)/Makefile.common
|
|
|
|
noinst_PROGRAMS = osmo-burst-gen
|
|
|
|
osmo_burst_gen_SOURCES = burst-gen.cpp \
|
|
${top_srcdir}/Transceiver52M/grgsm_vitac/grgsm_vitac.cpp \
|
|
${top_srcdir}/Transceiver52M/grgsm_vitac/viterbi_detector.cc
|
|
osmo_burst_gen_LDADD = \
|
|
${top_srcdir}/Transceiver52M/libtransceiver_common.la \
|
|
$(ARCH_LA) \
|
|
$(GSM_LA) \
|
|
$(COMMON_LA)
|
|
osmo_burst_gen_CPPFLAGS = -Wall $(STD_DEFINES_AND_INCLUDES) \
|
|
-I${top_srcdir}/Transceiver52M/arch/common \
|
|
-I${top_srcdir}/Transceiver52M/device/common \
|
|
-I${top_srcdir}/Transceiver52M
|
|
|