import kalibrate 0.4.1

taken from:
http://thre.at/kalibrate/kal-v0.4.1.tar.bz2

Signed-off-by: Steve Markgraf <steve@steve-m.de>
This commit is contained in:
Steve Markgraf 2012-10-08 03:59:57 +02:00
commit c58471bb42
26 changed files with 2818 additions and 0 deletions

23
src/Makefile.am Normal file
View file

@ -0,0 +1,23 @@
bin_PROGRAMS = kal
kal_SOURCES = \
arfcn_freq.cc \
c0_detect.cc \
circular_buffer.cc \
fcch_detector.cc \
kal.cc \
offset.cc \
usrp_source.cc \
util.cc\
arfcn_freq.h \
c0_detect.h \
circular_buffer.h \
fcch_detector.h \
offset.h \
usrp_complex.h \
usrp_source.h \
util.h\
version.h
kal_CXXFLAGS = $(FFTW3_CFLAGS) $(USRP_CFLAGS)
kal_LDADD = $(FFTW3_LIBS) $(USRP_LIBS)