From owner-svn-ports-head@freebsd.org Sun Oct 4 02:26:10 2015 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 9F6AAA0F423; Sun, 4 Oct 2015 02:26:10 +0000 (UTC) (envelope-from db@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8EA521B13; Sun, 4 Oct 2015 02:26:10 +0000 (UTC) (envelope-from db@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id t942QAtU045600; Sun, 4 Oct 2015 02:26:10 GMT (envelope-from db@FreeBSD.org) Received: (from db@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id t942Q84j045593; Sun, 4 Oct 2015 02:26:08 GMT (envelope-from db@FreeBSD.org) Message-Id: <201510040226.t942Q84j045593@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: db set sender to db@FreeBSD.org using -f From: Diane Bruce Date: Sun, 4 Oct 2015 02:26:08 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r398562 - in head/comms/gnuradio: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 04 Oct 2015 02:26:10 -0000 Author: db Date: Sun Oct 4 02:26:08 2015 New Revision: 398562 URL: https://svnweb.freebsd.org/changeset/ports/398562 Log: Update to 3.7.8 USE_GCC=yes causes the build to fail on systems where clang and libc++ are used by default (see bug 202143, for example). This essentially means comms/gnuradio currently only builds on 9.x. The problem is caused by the fact that on 10.x and later boost is likely built using clang and libc++, but USE_GCC=yes forces gnuradio to be built with GCC and libstdc++. Ports r392951 mentioned USE_GCC=yes was added because "clang's builtins were conflicting with gnuradio", which does not seem to happen in my tests at least. PR: ports/203500 Submitted by: takefu@airport.fm Added: head/comms/gnuradio/files/patch-gr-dtv__lib__dvbt__dvbt_reed_solomon.cc (contents, props changed) Modified: head/comms/gnuradio/Makefile head/comms/gnuradio/distinfo head/comms/gnuradio/files/patch-CMakeLists.txt head/comms/gnuradio/files/patch-docs_doxygen_Doxyfile.in head/comms/gnuradio/files/patch-volk_tmpl_volk__cpu.tmpl.c head/comms/gnuradio/pkg-plist Modified: head/comms/gnuradio/Makefile ============================================================================== --- head/comms/gnuradio/Makefile Sun Oct 4 01:33:49 2015 (r398561) +++ head/comms/gnuradio/Makefile Sun Oct 4 02:26:08 2015 (r398562) @@ -1,8 +1,7 @@ # $FreeBSD$ PORTNAME= gnuradio -PORTVERSION= 3.7.7.1 -PORTREVISION= 1 +PORTVERSION= 3.7.8 CATEGORIES= comms astro hamradio MASTER_SITES= http://gnuradio.org/releases/gnuradio/ \ LOCAL/db @@ -34,15 +33,19 @@ LIB_DEPENDS= libcppunit.so:${PORTSDIR}/d libgsl.so:${PORTSDIR}/math/gsl RUN_DEPENDS:= ${BUILD_DEPENDS} -USES= cmake:outsource iconv perl5 python:2.7 shebangfix +# USES=compiler:c11 is necessary because base GCC fails: +# volk/lib/volk_cpu.c: In function 'i_can_has_3dnow': +# volk/lib/volk_cpu.c:62: error: can't find a register in class 'BREG' while reloading 'asm' +# volk/lib/volk_cpu.c:62: error: 'asm' operand has impossible constraints +USES= cmake:outsource compiler:c11 iconv perl5 python:2.7 shebangfix SHEBANG_FILES= grc/freedesktop/grc_setup_freedesktop.in CMAKE_ARGS+= -DSWIG_EXECUTABLE:STRING="${LOCALBASE}/bin/swig2.0" CMAKE_ARGS+= -DICONV_PREFIX:STRING="${ICONV_PREFIX}" \ -DICONV_LIB:STRING="X${ICONV_LIB}" \ -DENABLE_GR_CTRLPORT="YES" -# for detailed debugging uncomment the next two lines as needed +# for detailed debugging uncomment the next line #CMAKE_ARGS+= --debug-output --trace -MAJOR_SUB_VER= 3.7.7 +MAJOR_SUB_VER= 3.7.8 DOCSDIR= share/doc/${PORTNAME}-${MAJOR_SUB_VER} USE_GNOME= pygtk2 USE_WX= 3.0+ @@ -51,6 +54,9 @@ WX_COMPS= wx wx:build wx:run python:buil USE_LDCONFIG= yes PLIST_SUB+= MAJOR_VERSION="3" PLIST_SUB+= MAJOR_SUB_VER="${MAJOR_SUB_VER}" +LIBSTRIP_FILES= analog atsc audio blocks channels digital dtv fcd fec fft\ + filter noaa pager pmt qtgui runtime trellis video-sdl\ + vocoder wavelet wxgui OPTIONS_DEFINE= USRP TESTING # Unfortunately building docs on i386 fails @@ -58,6 +64,7 @@ OPTIONS_DEFINE= USRP TESTING # Yay. building docs is broken on 10 and HEAD too so turn them all off OPTIONS_EXCLUDE= DOCS OPTIONS_DEFAULT= USRP +OPTIONS_SUB= yes USRP_DESC= Include USRP support (UHD) from Ettus TESTING_DESC= Include testing support @@ -84,8 +91,11 @@ TESTING_CMAKE_ON= -DENABLE_TESTING:STRIN TESTING_CMAKE_OFF= -DENABLE_TESTING:STRING="OFF" TESTING_BUILD_DEPENDS= cppunit-config:${PORTSDIR}/devel/cppunit -.include +.include +.if ${PORT_OPTIONS:MUSRP} +LIBSTRIP_FILES+= uhd +.endif .if ${OPSYS} == FreeBSD && ${OSVERSION} < 1000000 USE_GCC= yes .endif @@ -100,4 +110,9 @@ post-patch: @${REINPLACE_CMD} -e 's|%%LOCALBASE%%|${LOCALBASE}|' \ ${WRKSRC}/cmake/Modules/FindPortaudio.cmake -.include +post-install: +.for a in ${LIBSTRIP_FILES} + ${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libgnuradio-${a}.so.${MAJOR_SUB_VER} +.endfor + +.include Modified: head/comms/gnuradio/distinfo ============================================================================== --- head/comms/gnuradio/distinfo Sun Oct 4 01:33:49 2015 (r398561) +++ head/comms/gnuradio/distinfo Sun Oct 4 02:26:08 2015 (r398562) @@ -1,2 +1,2 @@ -SHA256 (gnuradio-3.7.7.1.tar.gz) = 2b27b13fc734ab5882e42c1661d433c0c097fd8b55b682f00626fa96c356584e -SIZE (gnuradio-3.7.7.1.tar.gz) = 3845988 +SHA256 (gnuradio-3.7.8.tar.gz) = fe19cb54b5d77fb76dde61d5cf184c6dee7066779b45c51676bae6e6d0cd4172 +SIZE (gnuradio-3.7.8.tar.gz) = 3990172 Modified: head/comms/gnuradio/files/patch-CMakeLists.txt ============================================================================== --- head/comms/gnuradio/files/patch-CMakeLists.txt Sun Oct 4 01:33:49 2015 (r398561) +++ head/comms/gnuradio/files/patch-CMakeLists.txt Sun Oct 4 02:26:08 2015 (r398562) @@ -1,4 +1,4 @@ ---- CMakeLists.txt.orig 2015-05-12 09:39:44 UTC +--- CMakeLists.txt.orig 2015-07-25 20:27:13 UTC +++ CMakeLists.txt @@ -29,6 +29,11 @@ cmake_minimum_required(VERSION 2.6) project(gnuradio CXX C) @@ -15,7 +15,7 @@ @@ -144,6 +149,14 @@ string(REPLACE "\n" " \\n" COMPILER_INFO ######################################################################## include(GrPlatform) #define LIB_SUFFIX - set(GR_RUNTIME_DIR bin) + set(GR_RUNTIME_DIR bin CACHE PATH "Path to install all binaries") +######################################################################## +# FreeBSD libdata vs. lib +# @@ -24,10 +24,10 @@ +else() +set(GR_PKGCONFIG_DIR lib${LIB_SUFFIX}) +endif() - set(GR_LIBRARY_DIR lib${LIB_SUFFIX}) - set(GR_INCLUDE_DIR include) - set(GR_DATA_DIR share) -@@ -228,6 +241,42 @@ add_custom_target(uninstall + set(GR_LIBRARY_DIR lib${LIB_SUFFIX} CACHE PATH "Path to install libraries") + set(GR_INCLUDE_DIR include CACHE PATH "Path to install header files") + set(GR_DATA_DIR share CACHE PATH "Base location for data") +@@ -229,6 +242,42 @@ add_custom_target(uninstall include(GrBoost) ######################################################################## @@ -70,7 +70,7 @@ # Enable python component ######################################################################## find_package(PythonLibs 2) -@@ -353,11 +402,13 @@ GR_LOGGING() +@@ -354,11 +403,13 @@ GR_LOGGING() ######################################################################## # Distribute the README file ######################################################################## Modified: head/comms/gnuradio/files/patch-docs_doxygen_Doxyfile.in ============================================================================== --- head/comms/gnuradio/files/patch-docs_doxygen_Doxyfile.in Sun Oct 4 01:33:49 2015 (r398561) +++ head/comms/gnuradio/files/patch-docs_doxygen_Doxyfile.in Sun Oct 4 02:26:08 2015 (r398562) @@ -5,7 +5,7 @@ # set the path where dot can find it. -DOT_FONTPATH = -+DOT_FONTPATH = /usr/local/share/fonts/freefont-ttf ++DOT_FONTPATH = %%PREFIX%%/share/fonts/freefont-ttf # If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen # will generate a graph for each documented class showing the direct and Added: head/comms/gnuradio/files/patch-gr-dtv__lib__dvbt__dvbt_reed_solomon.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/comms/gnuradio/files/patch-gr-dtv__lib__dvbt__dvbt_reed_solomon.cc Sun Oct 4 02:26:08 2015 (r398562) @@ -0,0 +1,11 @@ +--- gr-dtv/lib/dvbt/dvbt_reed_solomon.cc.orig 2015-08-05 18:54:39 UTC ++++ gr-dtv/lib/dvbt/dvbt_reed_solomon.cc +@@ -42,7 +42,7 @@ namespace gr { + d_p = p; d_m = m; + + //maximum number of elements in the GF(p^m) +- int q = powl(p, m); ++ int q = pow(p, m); + + d_gf_exp = new unsigned char[q]; + if (d_gf_exp == NULL) { Modified: head/comms/gnuradio/files/patch-volk_tmpl_volk__cpu.tmpl.c ============================================================================== --- head/comms/gnuradio/files/patch-volk_tmpl_volk__cpu.tmpl.c Sun Oct 4 01:33:49 2015 (r398561) +++ head/comms/gnuradio/files/patch-volk_tmpl_volk__cpu.tmpl.c Sun Oct 4 02:26:08 2015 (r398562) @@ -1,10 +1,13 @@ ---- volk/tmpl/volk_cpu.tmpl.c.orig 2015-05-12 09:39:44 UTC +--- volk/tmpl/volk_cpu.tmpl.c.orig 2015-07-09 02:00:33 UTC +++ volk/tmpl/volk_cpu.tmpl.c -@@ -36,7 +36,31 @@ struct VOLK_CPU volk_cpu; - #if defined(HAVE_CPUID_H) - #include - #else -- #include "gcc_x86_cpuid.h" +@@ -34,7 +34,35 @@ struct VOLK_CPU volk_cpu; + + //implement get cpuid for gcc compilers using a system or local copy of cpuid.h + #if defined(__GNUC__) +- #include ++ #if defined(HAVE_CPUID_H) ++ #include ++ #else + #ifdef __FreeBSD__ +#if __i386__ +#define __cpuid(__level, __eax, __ebx, __ecx, __edx) \ @@ -30,6 +33,7 @@ + #else + #include "gcc_x86_cpuid.h" + #endif - #endif ++ #endif #define cpuid_x86(op, r) __get_cpuid(op, (unsigned int *)r+0, (unsigned int *)r+1, (unsigned int *)r+2, (unsigned int *)r+3) + /* Return Intel AVX extended CPU capabilities register. Modified: head/comms/gnuradio/pkg-plist ============================================================================== --- head/comms/gnuradio/pkg-plist Sun Oct 4 01:33:49 2015 (r398561) +++ head/comms/gnuradio/pkg-plist Sun Oct 4 02:26:08 2015 (r398562) @@ -1,8 +1,14 @@ %%QT_BINDIR%%/gnuradio-companion %%QT_BINDIR%%/gnuradio-config-info %%QT_BINDIR%%/gr_constellation_plot +%%QT_BINDIR%%/gr-ctrlport-monitor +%%QT_BINDIR%%/gr-ctrlport-monitorc +%%QT_BINDIR%%/gr-ctrlport-monitoro %%QT_BINDIR%%/gr_filter_design %%QT_BINDIR%%/gr_modtool +%%QT_BINDIR%%/gr-perf-monitorx +%%QT_BINDIR%%/gr-perf-monitorxc +%%QT_BINDIR%%/gr-perf-monitorxo %%QT_BINDIR%%/gr_plot_char %%QT_BINDIR%%/gr_plot_const %%QT_BINDIR%%/gr_plot_fft @@ -36,11 +42,11 @@ %%QT_BINDIR%%/gr_time_raster_b %%QT_BINDIR%%/gr_time_raster_f %%QT_BINDIR%%/grcc -%%QT_BINDIR%%/uhd_fft -%%QT_BINDIR%%/uhd_rx_cfile -%%QT_BINDIR%%/uhd_rx_nogui -%%QT_BINDIR%%/uhd_siggen -%%QT_BINDIR%%/uhd_siggen_gui +%%USRP%%%%QT_BINDIR%%/uhd_fft +%%USRP%%%%QT_BINDIR%%/uhd_rx_cfile +%%USRP%%%%QT_BINDIR%%/uhd_rx_nogui +%%USRP%%%%QT_BINDIR%%/uhd_siggen +%%USRP%%%%QT_BINDIR%%/uhd_siggen_gui %%QT_BINDIR%%/usrp_flex %%QT_BINDIR%%/usrp_flex_all %%QT_BINDIR%%/usrp_flex_band @@ -48,20 +54,20 @@ %%QT_BINDIR%%/volk_modtool %%QT_BINDIR%%/volk_profile %%ETCDIR%%/conf.d/gnuradio-runtime.conf -%%ETCDIR%%/conf.d/gr-audio-alsa.conf.sample -%%ETCDIR%%/conf.d/gr-audio-jack.conf.sample -%%ETCDIR%%/conf.d/gr-audio-oss.conf.sample -%%ETCDIR%%/conf.d/gr-audio-portaudio.conf.sample -%%ETCDIR%%/conf.d/gr-audio.conf.sample -%%ETCDIR%%/conf.d/gr-qtgui.conf.sample -%%ETCDIR%%/conf.d/gr-wxgui.conf.sample -%%ETCDIR%%/conf.d/grc.conf.sample -%%ETCDIR%%/conf.d/modtool.conf.sample +@sample %%ETCDIR%%/conf.d/gr-audio-alsa.conf.sample +@sample %%ETCDIR%%/conf.d/gr-audio-jack.conf.sample +@sample %%ETCDIR%%/conf.d/gr-audio-oss.conf.sample +@sample %%ETCDIR%%/conf.d/gr-audio-portaudio.conf.sample +@sample %%ETCDIR%%/conf.d/gr-audio.conf.sample +@sample %%ETCDIR%%/conf.d/gr-qtgui.conf.sample +@sample %%ETCDIR%%/conf.d/gr-wxgui.conf.sample +@sample %%ETCDIR%%/conf.d/grc.conf.sample +@sample %%ETCDIR%%/conf.d/modtool.conf.sample include/gnuradio/analog/agc.h include/gnuradio/analog/agc2.h include/gnuradio/analog/agc2_cc.h include/gnuradio/analog/agc2_ff.h -include/gnuradio/analog/agc%%MAJOR_VERSION%%_cc.h +include/gnuradio/analog/agc3_cc.h include/gnuradio/analog/agc_cc.h include/gnuradio/analog/agc_ff.h include/gnuradio/analog/api.h @@ -104,7 +110,7 @@ include/gnuradio/api.h include/gnuradio/atsc/CMakeLists.txt include/gnuradio/atsc/GrAtscBitTimingLoop.h include/gnuradio/atsc/GrAtscBitTimingLoop2.h -include/gnuradio/atsc/GrAtscBitTimingLoop%%MAJOR_VERSION%%.h +include/gnuradio/atsc/GrAtscBitTimingLoop3.h include/gnuradio/atsc/GrAtscConvert2xTo20.h include/gnuradio/atsc/GrAtscDataSegToSoftDataSeg.h include/gnuradio/atsc/GrAtscDeinterleaver.h @@ -216,11 +222,11 @@ include/gnuradio/blocks/api.h include/gnuradio/blocks/argmax_fs.h include/gnuradio/blocks/argmax_is.h include/gnuradio/blocks/argmax_ss.h -include/gnuradio/blocks/%%QT_BINDIR%%_statistics_f.h +include/gnuradio/blocks/bin_statistics_f.h include/gnuradio/blocks/burst_tagger.h include/gnuradio/blocks/char_to_float.h include/gnuradio/blocks/char_to_short.h -include/gnuradio/blocks/check_lfsr_%%MAJOR_VERSION%%2k_s.h +include/gnuradio/blocks/check_lfsr_32k_s.h include/gnuradio/blocks/complex_to_arg.h include/gnuradio/blocks/complex_to_float.h include/gnuradio/blocks/complex_to_imag.h @@ -269,8 +275,8 @@ include/gnuradio/blocks/interleaved_shor include/gnuradio/blocks/keep_m_in_n.h include/gnuradio/blocks/keep_one_in_n.h include/gnuradio/blocks/lfsr_15_1_0.h -include/gnuradio/blocks/lfsr_%%MAJOR_VERSION%%2k.h -include/gnuradio/blocks/lfsr_%%MAJOR_VERSION%%2k_source_s.h +include/gnuradio/blocks/lfsr_32k.h +include/gnuradio/blocks/lfsr_32k_source_s.h include/gnuradio/blocks/log2_const.h include/gnuradio/blocks/max_ff.h include/gnuradio/blocks/max_ii.h @@ -432,7 +438,9 @@ include/gnuradio/config.h include/gnuradio/constants.h include/gnuradio/digital/additive_scrambler_bb.h include/gnuradio/digital/api.h -include/gnuradio/digital/%%QT_BINDIR%%ary_slicer_fb.h +include/gnuradio/digital/binary_slicer_fb.h +include/gnuradio/digital/burst_shaper_cc.h +include/gnuradio/digital/burst_shaper_ff.h include/gnuradio/digital/chunks_to_symbols_bc.h include/gnuradio/digital/chunks_to_symbols_bf.h include/gnuradio/digital/chunks_to_symbols_ic.h @@ -446,6 +454,7 @@ include/gnuradio/digital/constellation.h include/gnuradio/digital/constellation_decoder_cb.h include/gnuradio/digital/constellation_receiver_cb.h include/gnuradio/digital/constellation_soft_decoder_cf.h +include/gnuradio/digital/corr_est_cc.h include/gnuradio/digital/correlate_access_code_bb.h include/gnuradio/digital/correlate_access_code_bb_ts.h include/gnuradio/digital/correlate_access_code_ff_ts.h @@ -453,9 +462,9 @@ include/gnuradio/digital/correlate_acces include/gnuradio/digital/correlate_and_sync_cc.h include/gnuradio/digital/costas_loop_cc.h include/gnuradio/digital/cpmmod_bc.h -include/gnuradio/digital/crc%%MAJOR_VERSION%%2.h -include/gnuradio/digital/crc%%MAJOR_VERSION%%2_async_bb.h -include/gnuradio/digital/crc%%MAJOR_VERSION%%2_bb.h +include/gnuradio/digital/crc32.h +include/gnuradio/digital/crc32_async_bb.h +include/gnuradio/digital/crc32_bb.h include/gnuradio/digital/descrambler_bb.h include/gnuradio/digital/diff_decoder_bb.h include/gnuradio/digital/diff_encoder_bb.h @@ -473,9 +482,11 @@ include/gnuradio/digital/lfsr.h include/gnuradio/digital/lms_dd_equalizer_cc.h include/gnuradio/digital/map_bb.h include/gnuradio/digital/metric_type.h +include/gnuradio/digital/modulate_vector.h include/gnuradio/digital/mpsk_receiver_cc.h include/gnuradio/digital/mpsk_snr_est.h include/gnuradio/digital/mpsk_snr_est_cc.h +include/gnuradio/digital/msk_timing_recovery_cc.h include/gnuradio/digital/ofdm_carrier_allocator_cvc.h include/gnuradio/digital/ofdm_chanest_vcvc.h include/gnuradio/digital/ofdm_cyclic_prefixer.h @@ -530,6 +541,15 @@ include/gnuradio/dtv/dvbs2_config.h include/gnuradio/dtv/dvbs2_interleaver_bb.h include/gnuradio/dtv/dvbs2_modulator_bc.h include/gnuradio/dtv/dvbs2_physical_cc.h +include/gnuradio/dtv/dvbt_bit_inner_interleaver.h +include/gnuradio/dtv/dvbt_config.h +include/gnuradio/dtv/dvbt_convolutional_interleaver.h +include/gnuradio/dtv/dvbt_energy_dispersal.h +include/gnuradio/dtv/dvbt_inner_coder.h +include/gnuradio/dtv/dvbt_map.h +include/gnuradio/dtv/dvbt_reed_solomon_enc.h +include/gnuradio/dtv/dvbt_reference_signals.h +include/gnuradio/dtv/dvbt_symbol_inner_interleaver.h include/gnuradio/dtv/dvbt2_cellinterleaver_cc.h include/gnuradio/dtv/dvbt2_config.h include/gnuradio/dtv/dvbt2_framemapper_cc.h @@ -548,6 +568,7 @@ include/gnuradio/fec/api.h include/gnuradio/fec/async_decoder.h include/gnuradio/fec/async_encoder.h include/gnuradio/fec/ber_bf.h +include/gnuradio/fec/cc_common.h include/gnuradio/fec/cc_decoder.h include/gnuradio/fec/cc_encoder.h include/gnuradio/fec/ccsds_encoder.h @@ -755,8 +776,8 @@ include/gnuradio/swig/blocks_swig1.i include/gnuradio/swig/blocks_swig1_doc.i include/gnuradio/swig/blocks_swig2.i include/gnuradio/swig/blocks_swig2_doc.i -include/gnuradio/swig/blocks_swig%%MAJOR_VERSION%%.i -include/gnuradio/swig/blocks_swig%%MAJOR_VERSION%%_doc.i +include/gnuradio/swig/blocks_swig3.i +include/gnuradio/swig/blocks_swig3_doc.i include/gnuradio/swig/blocks_swig4.i include/gnuradio/swig/blocks_swig4_doc.i include/gnuradio/swig/blocks_swig5.i @@ -817,8 +838,8 @@ include/gnuradio/swig/tags.i include/gnuradio/swig/top_block.i include/gnuradio/swig/trellis_swig.i include/gnuradio/swig/trellis_swig_doc.i -include/gnuradio/swig/uhd_swig.i -include/gnuradio/swig/uhd_swig_doc.i +%%USRP%%include/gnuradio/swig/uhd_swig.i +%%USRP%%include/gnuradio/swig/uhd_swig_doc.i include/gnuradio/swig/video_sdl_swig.i include/gnuradio/swig/video_sdl_swig_doc.i include/gnuradio/swig/vocoder_swig.i @@ -858,12 +879,12 @@ include/gnuradio/trellis/metrics_f.h include/gnuradio/trellis/metrics_i.h include/gnuradio/trellis/metrics_s.h include/gnuradio/trellis/pccc_decoder_b.h -include/gnuradio/trellis/pccc_decoder_com%%QT_BINDIR%%ed_cb.h -include/gnuradio/trellis/pccc_decoder_com%%QT_BINDIR%%ed_ci.h -include/gnuradio/trellis/pccc_decoder_com%%QT_BINDIR%%ed_cs.h -include/gnuradio/trellis/pccc_decoder_com%%QT_BINDIR%%ed_fb.h -include/gnuradio/trellis/pccc_decoder_com%%QT_BINDIR%%ed_fi.h -include/gnuradio/trellis/pccc_decoder_com%%QT_BINDIR%%ed_fs.h +include/gnuradio/trellis/pccc_decoder_combined_cb.h +include/gnuradio/trellis/pccc_decoder_combined_ci.h +include/gnuradio/trellis/pccc_decoder_combined_cs.h +include/gnuradio/trellis/pccc_decoder_combined_fb.h +include/gnuradio/trellis/pccc_decoder_combined_fi.h +include/gnuradio/trellis/pccc_decoder_combined_fs.h include/gnuradio/trellis/pccc_decoder_i.h include/gnuradio/trellis/pccc_decoder_s.h include/gnuradio/trellis/pccc_encoder_bb.h @@ -875,12 +896,12 @@ include/gnuradio/trellis/pccc_encoder_ss include/gnuradio/trellis/permutation.h include/gnuradio/trellis/quicksort_index.h include/gnuradio/trellis/sccc_decoder_b.h -include/gnuradio/trellis/sccc_decoder_com%%QT_BINDIR%%ed_cb.h -include/gnuradio/trellis/sccc_decoder_com%%QT_BINDIR%%ed_ci.h -include/gnuradio/trellis/sccc_decoder_com%%QT_BINDIR%%ed_cs.h -include/gnuradio/trellis/sccc_decoder_com%%QT_BINDIR%%ed_fb.h -include/gnuradio/trellis/sccc_decoder_com%%QT_BINDIR%%ed_fi.h -include/gnuradio/trellis/sccc_decoder_com%%QT_BINDIR%%ed_fs.h +include/gnuradio/trellis/sccc_decoder_combined_cb.h +include/gnuradio/trellis/sccc_decoder_combined_ci.h +include/gnuradio/trellis/sccc_decoder_combined_cs.h +include/gnuradio/trellis/sccc_decoder_combined_fb.h +include/gnuradio/trellis/sccc_decoder_combined_fi.h +include/gnuradio/trellis/sccc_decoder_combined_fs.h include/gnuradio/trellis/sccc_decoder_i.h include/gnuradio/trellis/sccc_decoder_s.h include/gnuradio/trellis/sccc_encoder_bb.h @@ -889,29 +910,30 @@ include/gnuradio/trellis/sccc_encoder_bs include/gnuradio/trellis/sccc_encoder_ii.h include/gnuradio/trellis/sccc_encoder_si.h include/gnuradio/trellis/sccc_encoder_ss.h -include/gnuradio/trellis/siso_com%%QT_BINDIR%%ed_f.h +include/gnuradio/trellis/siso_combined_f.h include/gnuradio/trellis/siso_f.h include/gnuradio/trellis/siso_type.h include/gnuradio/trellis/viterbi_b.h -include/gnuradio/trellis/viterbi_com%%QT_BINDIR%%ed_cb.h -include/gnuradio/trellis/viterbi_com%%QT_BINDIR%%ed_ci.h -include/gnuradio/trellis/viterbi_com%%QT_BINDIR%%ed_cs.h -include/gnuradio/trellis/viterbi_com%%QT_BINDIR%%ed_fb.h -include/gnuradio/trellis/viterbi_com%%QT_BINDIR%%ed_fi.h -include/gnuradio/trellis/viterbi_com%%QT_BINDIR%%ed_fs.h -include/gnuradio/trellis/viterbi_com%%QT_BINDIR%%ed_ib.h -include/gnuradio/trellis/viterbi_com%%QT_BINDIR%%ed_ii.h -include/gnuradio/trellis/viterbi_com%%QT_BINDIR%%ed_is.h -include/gnuradio/trellis/viterbi_com%%QT_BINDIR%%ed_sb.h -include/gnuradio/trellis/viterbi_com%%QT_BINDIR%%ed_si.h -include/gnuradio/trellis/viterbi_com%%QT_BINDIR%%ed_ss.h +include/gnuradio/trellis/viterbi_combined_cb.h +include/gnuradio/trellis/viterbi_combined_ci.h +include/gnuradio/trellis/viterbi_combined_cs.h +include/gnuradio/trellis/viterbi_combined_fb.h +include/gnuradio/trellis/viterbi_combined_fi.h +include/gnuradio/trellis/viterbi_combined_fs.h +include/gnuradio/trellis/viterbi_combined_ib.h +include/gnuradio/trellis/viterbi_combined_ii.h +include/gnuradio/trellis/viterbi_combined_is.h +include/gnuradio/trellis/viterbi_combined_sb.h +include/gnuradio/trellis/viterbi_combined_si.h +include/gnuradio/trellis/viterbi_combined_ss.h include/gnuradio/trellis/viterbi_i.h include/gnuradio/trellis/viterbi_s.h include/gnuradio/types.h -include/gnuradio/uhd/amsg_source.h -include/gnuradio/uhd/api.h -include/gnuradio/uhd/usrp_sink.h -include/gnuradio/uhd/usrp_source.h +%%USRP%%include/gnuradio/uhd/amsg_source.h +%%USRP%%include/gnuradio/uhd/api.h +%%USRP%%include/gnuradio/uhd/usrp_block.h +%%USRP%%include/gnuradio/uhd/usrp_sink.h +%%USRP%%include/gnuradio/uhd/usrp_source.h include/gnuradio/unittests.h include/gnuradio/video_sdl/api.h include/gnuradio/video_sdl/sink_s.h @@ -926,10 +948,10 @@ include/gnuradio/vocoder/cvsd_decode_bs. include/gnuradio/vocoder/cvsd_encode_sb.h include/gnuradio/vocoder/g721_decode_bs.h include/gnuradio/vocoder/g721_encode_sb.h -include/gnuradio/vocoder/g72%%MAJOR_VERSION%%_24_decode_bs.h -include/gnuradio/vocoder/g72%%MAJOR_VERSION%%_24_encode_sb.h -include/gnuradio/vocoder/g72%%MAJOR_VERSION%%_40_decode_bs.h -include/gnuradio/vocoder/g72%%MAJOR_VERSION%%_40_encode_sb.h +include/gnuradio/vocoder/g723_24_decode_bs.h +include/gnuradio/vocoder/g723_24_encode_sb.h +include/gnuradio/vocoder/g723_40_decode_bs.h +include/gnuradio/vocoder/g723_40_encode_sb.h include/gnuradio/vocoder/gsm_fr_decode_ps.h include/gnuradio/vocoder/gsm_fr_encode_sp.h include/gnuradio/vocoder/ulaw_decode_bs.h @@ -950,97 +972,98 @@ include/pmt/pmt_pool.h include/pmt/pmt_serial_tags.h include/pmt/pmt_sugar.h include/volk/volk.h -include/volk/volk_16i_%%MAJOR_VERSION%%2fc_dot_prod_%%MAJOR_VERSION%%2fc.h +include/volk/volk_16i_32fc_dot_prod_32fc.h include/volk/volk_16i_branch_4_state_8.h include/volk/volk_16i_convert_8i.h include/volk/volk_16i_max_star_16i.h include/volk/volk_16i_max_star_horizontal_16i.h include/volk/volk_16i_permute_and_scalar_add.h -include/volk/volk_16i_s%%MAJOR_VERSION%%2f_convert_%%MAJOR_VERSION%%2f.h +include/volk/volk_16i_s32f_convert_32f.h include/volk/volk_16i_x4_quad_max_star_16i.h include/volk/volk_16i_x5_add_quad_16i_x4.h include/volk/volk_16ic_deinterleave_16i_x2.h include/volk/volk_16ic_deinterleave_real_16i.h include/volk/volk_16ic_deinterleave_real_8i.h include/volk/volk_16ic_magnitude_16i.h -include/volk/volk_16ic_s%%MAJOR_VERSION%%2f_deinterleave_%%MAJOR_VERSION%%2f_x2.h -include/volk/volk_16ic_s%%MAJOR_VERSION%%2f_deinterleave_real_%%MAJOR_VERSION%%2f.h -include/volk/volk_16ic_s%%MAJOR_VERSION%%2f_magnitude_%%MAJOR_VERSION%%2f.h +include/volk/volk_16ic_s32f_deinterleave_32f_x2.h +include/volk/volk_16ic_s32f_deinterleave_real_32f.h +include/volk/volk_16ic_s32f_magnitude_32f.h include/volk/volk_16u_byteswap.h include/volk/volk_16u_byteswappuppet_16u.h -include/volk/volk_%%MAJOR_VERSION%%2f_accumulator_s%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2f_acos_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2f_asin_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2f_atan_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2f_%%QT_BINDIR%%ary_slicer_%%MAJOR_VERSION%%2i.h -include/volk/volk_%%MAJOR_VERSION%%2f_%%QT_BINDIR%%ary_slicer_8i.h -include/volk/volk_%%MAJOR_VERSION%%2f_convert_64f.h -include/volk/volk_%%MAJOR_VERSION%%2f_cos_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2f_expfast_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2f_index_max_16u.h -include/volk/volk_%%MAJOR_VERSION%%2f_invsqrt_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2f_log2_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2f_null_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2f_s%%MAJOR_VERSION%%2f_%%MAJOR_VERSION%%2f_fm_detect_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2f_s%%MAJOR_VERSION%%2f_calc_spectral_noise_floor_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2f_s%%MAJOR_VERSION%%2f_convert_16i.h -include/volk/volk_%%MAJOR_VERSION%%2f_s%%MAJOR_VERSION%%2f_convert_%%MAJOR_VERSION%%2i.h -include/volk/volk_%%MAJOR_VERSION%%2f_s%%MAJOR_VERSION%%2f_convert_8i.h -include/volk/volk_%%MAJOR_VERSION%%2f_s%%MAJOR_VERSION%%2f_multiply_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2f_s%%MAJOR_VERSION%%2f_normalize.h -include/volk/volk_%%MAJOR_VERSION%%2f_s%%MAJOR_VERSION%%2f_power_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2f_s%%MAJOR_VERSION%%2f_stddev_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2f_sin_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2f_sqrt_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2f_stddev_and_mean_%%MAJOR_VERSION%%2f_x2.h -include/volk/volk_%%MAJOR_VERSION%%2f_tan_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2f_tanh_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2f_x2_add_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2f_x2_divide_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2f_x2_dot_prod_16i.h -include/volk/volk_%%MAJOR_VERSION%%2f_x2_dot_prod_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2f_x2_interleave_%%MAJOR_VERSION%%2fc.h -include/volk/volk_%%MAJOR_VERSION%%2f_x2_max_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2f_x2_min_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2f_x2_multiply_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2f_x2_pow_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2f_x2_s%%MAJOR_VERSION%%2f_interleave_16ic.h -include/volk/volk_%%MAJOR_VERSION%%2f_x2_subtract_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2f_x%%MAJOR_VERSION%%_sum_of_poly_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2fc_%%MAJOR_VERSION%%2f_dot_prod_%%MAJOR_VERSION%%2fc.h -include/volk/volk_%%MAJOR_VERSION%%2fc_%%MAJOR_VERSION%%2f_multiply_%%MAJOR_VERSION%%2fc.h -include/volk/volk_%%MAJOR_VERSION%%2fc_conjugate_%%MAJOR_VERSION%%2fc.h -include/volk/volk_%%MAJOR_VERSION%%2fc_deinterleave_%%MAJOR_VERSION%%2f_x2.h -include/volk/volk_%%MAJOR_VERSION%%2fc_deinterleave_64f_x2.h -include/volk/volk_%%MAJOR_VERSION%%2fc_deinterleave_imag_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2fc_deinterleave_real_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2fc_deinterleave_real_64f.h -include/volk/volk_%%MAJOR_VERSION%%2fc_index_max_16u.h -include/volk/volk_%%MAJOR_VERSION%%2fc_magnitude_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2fc_magnitude_squared_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2fc_s%%MAJOR_VERSION%%2f_atan2_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2fc_s%%MAJOR_VERSION%%2f_deinterleave_real_16i.h -include/volk/volk_%%MAJOR_VERSION%%2fc_s%%MAJOR_VERSION%%2f_magnitude_16i.h -include/volk/volk_%%MAJOR_VERSION%%2fc_s%%MAJOR_VERSION%%2f_power_%%MAJOR_VERSION%%2fc.h -include/volk/volk_%%MAJOR_VERSION%%2fc_s%%MAJOR_VERSION%%2f_power_spectrum_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2fc_s%%MAJOR_VERSION%%2f_x2_power_spectral_density_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2fc_s%%MAJOR_VERSION%%2fc_multiply_%%MAJOR_VERSION%%2fc.h -include/volk/volk_%%MAJOR_VERSION%%2fc_s%%MAJOR_VERSION%%2fc_rotatorpuppet_%%MAJOR_VERSION%%2fc.h -include/volk/volk_%%MAJOR_VERSION%%2fc_s%%MAJOR_VERSION%%2fc_x2_rotator_%%MAJOR_VERSION%%2fc.h -include/volk/volk_%%MAJOR_VERSION%%2fc_x2_conjugate_dot_prod_%%MAJOR_VERSION%%2fc.h -include/volk/volk_%%MAJOR_VERSION%%2fc_x2_dot_prod_%%MAJOR_VERSION%%2fc.h -include/volk/volk_%%MAJOR_VERSION%%2fc_x2_multiply_%%MAJOR_VERSION%%2fc.h -include/volk/volk_%%MAJOR_VERSION%%2fc_x2_multiply_conjugate_%%MAJOR_VERSION%%2fc.h -include/volk/volk_%%MAJOR_VERSION%%2fc_x2_s%%MAJOR_VERSION%%2f_square_dist_scalar_mult_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2fc_x2_square_dist_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2i_s%%MAJOR_VERSION%%2f_convert_%%MAJOR_VERSION%%2f.h -include/volk/volk_%%MAJOR_VERSION%%2i_x2_and_%%MAJOR_VERSION%%2i.h -include/volk/volk_%%MAJOR_VERSION%%2i_x2_or_%%MAJOR_VERSION%%2i.h -include/volk/volk_%%MAJOR_VERSION%%2u_byteswap.h -include/volk/volk_%%MAJOR_VERSION%%2u_byteswappuppet_%%MAJOR_VERSION%%2u.h -include/volk/volk_%%MAJOR_VERSION%%2u_popcnt.h -include/volk/volk_%%MAJOR_VERSION%%2u_popcntpuppet_%%MAJOR_VERSION%%2u.h -include/volk/volk_64f_convert_%%MAJOR_VERSION%%2f.h +include/volk/volk_32f_accumulator_s32f.h +include/volk/volk_32f_acos_32f.h +include/volk/volk_32f_asin_32f.h +include/volk/volk_32f_atan_32f.h +include/volk/volk_32f_%%QT_BINDIR%%ary_slicer_32i.h +include/volk/volk_32f_%%QT_BINDIR%%ary_slicer_8i.h +include/volk/volk_32f_convert_64f.h +include/volk/volk_32f_cos_32f.h +include/volk/volk_32f_expfast_32f.h +include/volk/volk_32f_index_max_16u.h +include/volk/volk_32f_invsqrt_32f.h +include/volk/volk_32f_log2_32f.h +include/volk/volk_32f_null_32f.h +include/volk/volk_32f_s32f_32f_fm_detect_32f.h +include/volk/volk_32f_s32f_calc_spectral_noise_floor_32f.h +include/volk/volk_32f_s32f_convert_16i.h +include/volk/volk_32f_s32f_convert_32i.h +include/volk/volk_32f_s32f_convert_8i.h +include/volk/volk_32f_s32f_multiply_32f.h +include/volk/volk_32f_s32f_normalize.h +include/volk/volk_32f_s32f_power_32f.h +include/volk/volk_32f_s32f_stddev_32f.h +include/volk/volk_32f_sin_32f.h +include/volk/volk_32f_sqrt_32f.h +include/volk/volk_32f_stddev_and_mean_32f_x2.h +include/volk/volk_32f_tan_32f.h +include/volk/volk_32f_tanh_32f.h +include/volk/volk_32f_x2_add_32f.h +include/volk/volk_32f_x2_divide_32f.h +include/volk/volk_32f_x2_dot_prod_16i.h +include/volk/volk_32f_x2_dot_prod_32f.h +include/volk/volk_32f_x2_fm_detectpuppet_32f.h +include/volk/volk_32f_x2_interleave_32fc.h +include/volk/volk_32f_x2_max_32f.h +include/volk/volk_32f_x2_min_32f.h +include/volk/volk_32f_x2_multiply_32f.h +include/volk/volk_32f_x2_pow_32f.h +include/volk/volk_32f_x2_s32f_interleave_16ic.h +include/volk/volk_32f_x2_subtract_32f.h +include/volk/volk_32f_x3_sum_of_poly_32f.h +include/volk/volk_32fc_32f_dot_prod_32fc.h +include/volk/volk_32fc_32f_multiply_32fc.h +include/volk/volk_32fc_conjugate_32fc.h +include/volk/volk_32fc_deinterleave_32f_x2.h +include/volk/volk_32fc_deinterleave_64f_x2.h +include/volk/volk_32fc_deinterleave_imag_32f.h +include/volk/volk_32fc_deinterleave_real_32f.h +include/volk/volk_32fc_deinterleave_real_64f.h +include/volk/volk_32fc_index_max_16u.h +include/volk/volk_32fc_magnitude_32f.h +include/volk/volk_32fc_magnitude_squared_32f.h +include/volk/volk_32fc_s32f_atan2_32f.h +include/volk/volk_32fc_s32f_deinterleave_real_16i.h +include/volk/volk_32fc_s32f_magnitude_16i.h +include/volk/volk_32fc_s32f_power_32fc.h +include/volk/volk_32fc_s32f_power_spectrum_32f.h +include/volk/volk_32fc_s32f_x2_power_spectral_density_32f.h +include/volk/volk_32fc_s32fc_multiply_32fc.h +include/volk/volk_32fc_s32fc_rotatorpuppet_32fc.h +include/volk/volk_32fc_s32fc_x2_rotator_32fc.h +include/volk/volk_32fc_x2_conjugate_dot_prod_32fc.h +include/volk/volk_32fc_x2_dot_prod_32fc.h +include/volk/volk_32fc_x2_multiply_32fc.h +include/volk/volk_32fc_x2_multiply_conjugate_32fc.h +include/volk/volk_32fc_x2_s32f_square_dist_scalar_mult_32f.h +include/volk/volk_32fc_x2_square_dist_32f.h +include/volk/volk_32i_s32f_convert_32f.h +include/volk/volk_32i_x2_and_32i.h +include/volk/volk_32i_x2_or_32i.h +include/volk/volk_32u_byteswap.h +include/volk/volk_32u_byteswappuppet_32u.h +include/volk/volk_32u_popcnt.h +include/volk/volk_32u_popcntpuppet_32u.h +include/volk/volk_64f_convert_32f.h include/volk/volk_64f_x2_max_64f.h include/volk/volk_64f_x2_min_64f.h include/volk/volk_64u_byteswap.h @@ -1048,14 +1071,14 @@ include/volk/volk_64u_byteswappuppet_64u include/volk/volk_64u_popcnt.h include/volk/volk_64u_popcntpuppet_64u.h include/volk/volk_8i_convert_16i.h -include/volk/volk_8i_s%%MAJOR_VERSION%%2f_convert_%%MAJOR_VERSION%%2f.h +include/volk/volk_8i_s32f_convert_32f.h include/volk/volk_8ic_deinterleave_16i_x2.h include/volk/volk_8ic_deinterleave_real_16i.h include/volk/volk_8ic_deinterleave_real_8i.h -include/volk/volk_8ic_s%%MAJOR_VERSION%%2f_deinterleave_%%MAJOR_VERSION%%2f_x2.h -include/volk/volk_8ic_s%%MAJOR_VERSION%%2f_deinterleave_real_%%MAJOR_VERSION%%2f.h +include/volk/volk_8ic_s32f_deinterleave_32f_x2.h +include/volk/volk_8ic_s32f_deinterleave_real_32f.h include/volk/volk_8ic_x2_multiply_conjugate_16ic.h -include/volk/volk_8ic_x2_s%%MAJOR_VERSION%%2f_multiply_conjugate_%%MAJOR_VERSION%%2fc.h +include/volk/volk_8ic_x2_s32f_multiply_conjugate_32fc.h include/volk/volk_8u_conv_k7_r2puppet_8u.h include/volk/volk_8u_x4_conv_k7_r2_8u.h include/volk/volk_common.h @@ -1069,7 +1092,7 @@ lib/cmake/gnuradio/CMakeMacroLibtoolFile lib/cmake/gnuradio/CMakeParseArgumentsCopy.cmake lib/cmake/gnuradio/FindALSA.cmake lib/cmake/gnuradio/FindCppUnit.cmake -lib/cmake/gnuradio/FindFFTW%%MAJOR_VERSION%%f.cmake +lib/cmake/gnuradio/FindFFTW3f.cmake lib/cmake/gnuradio/FindGSL.cmake lib/cmake/gnuradio/FindGit.cmake lib/cmake/gnuradio/FindJack.cmake @@ -1079,6 +1102,7 @@ lib/cmake/gnuradio/FindPortaudio.cmake lib/cmake/gnuradio/FindQwt.cmake lib/cmake/gnuradio/FindSWIG.cmake lib/cmake/gnuradio/FindSphinx.cmake +lib/cmake/gnuradio/FindThrift.cmake lib/cmake/gnuradio/FindUHD.cmake lib/cmake/gnuradio/FindUSB.cmake lib/cmake/gnuradio/FindZeroMQ.cmake @@ -1150,9 +1174,9 @@ lib/libgnuradio-runtime.so.%%MAJOR_SUB_V lib/libgnuradio-trellis.so lib/libgnuradio-trellis.so.%%MAJOR_VERSION%% lib/libgnuradio-trellis.so.%%MAJOR_SUB_VER%% -lib/libgnuradio-uhd.so -lib/libgnuradio-uhd.so.%%MAJOR_VERSION%% -lib/libgnuradio-uhd.so.%%MAJOR_SUB_VER%% +%%USRP%%lib/libgnuradio-uhd.so +%%USRP%%lib/libgnuradio-uhd.so.%%MAJOR_VERSION%% +%%USRP%%lib/libgnuradio-uhd.so.%%MAJOR_SUB_VER%% lib/libgnuradio-video-sdl.so lib/libgnuradio-video-sdl.so.%%MAJOR_VERSION%% lib/libgnuradio-video-sdl.so.%%MAJOR_SUB_VER%% @@ -1166,7 +1190,7 @@ lib/libgnuradio-wxgui.so lib/libgnuradio-wxgui.so.%%MAJOR_VERSION%% lib/libgnuradio-wxgui.so.%%MAJOR_SUB_VER%% lib/libvolk.so -lib/libvolk.so.1.0 +lib/libvolk.so.1.0.2 %%PYTHON_SITELIBDIR%%/gnuradio/__init__.py %%PYTHON_SITELIBDIR%%/gnuradio/__init__.pyc %%PYTHON_SITELIBDIR%%/gnuradio/__init__.pyo @@ -1230,7 +1254,7 @@ lib/libvolk.so.1.0 %%PYTHON_SITELIBDIR%%/gnuradio/blocks/_blocks_swig0.so %%PYTHON_SITELIBDIR%%/gnuradio/blocks/_blocks_swig1.so %%PYTHON_SITELIBDIR%%/gnuradio/blocks/_blocks_swig2.so -%%PYTHON_SITELIBDIR%%/gnuradio/blocks/_blocks_swig%%MAJOR_VERSION%%.so +%%PYTHON_SITELIBDIR%%/gnuradio/blocks/_blocks_swig3.so %%PYTHON_SITELIBDIR%%/gnuradio/blocks/_blocks_swig4.so %%PYTHON_SITELIBDIR%%/gnuradio/blocks/_blocks_swig5.so %%PYTHON_SITELIBDIR%%/gnuradio/blocks/blocks_swig.py @@ -1245,9 +1269,9 @@ lib/libvolk.so.1.0 %%PYTHON_SITELIBDIR%%/gnuradio/blocks/blocks_swig2.py %%PYTHON_SITELIBDIR%%/gnuradio/blocks/blocks_swig2.pyc %%PYTHON_SITELIBDIR%%/gnuradio/blocks/blocks_swig2.pyo -%%PYTHON_SITELIBDIR%%/gnuradio/blocks/blocks_swig%%MAJOR_VERSION%%.py -%%PYTHON_SITELIBDIR%%/gnuradio/blocks/blocks_swig%%MAJOR_VERSION%%.pyc -%%PYTHON_SITELIBDIR%%/gnuradio/blocks/blocks_swig%%MAJOR_VERSION%%.pyo +%%PYTHON_SITELIBDIR%%/gnuradio/blocks/blocks_swig3.py +%%PYTHON_SITELIBDIR%%/gnuradio/blocks/blocks_swig3.pyc +%%PYTHON_SITELIBDIR%%/gnuradio/blocks/blocks_swig3.pyo %%PYTHON_SITELIBDIR%%/gnuradio/blocks/blocks_swig4.py %%PYTHON_SITELIBDIR%%/gnuradio/blocks/blocks_swig4.pyc %%PYTHON_SITELIBDIR%%/gnuradio/blocks/blocks_swig4.pyo @@ -1276,9 +1300,9 @@ lib/libvolk.so.1.0 %%PYTHON_SITELIBDIR%%/gnuradio/channels/distortion_2_gen.py %%PYTHON_SITELIBDIR%%/gnuradio/channels/distortion_2_gen.pyc %%PYTHON_SITELIBDIR%%/gnuradio/channels/distortion_2_gen.pyo -%%PYTHON_SITELIBDIR%%/gnuradio/channels/distortion_%%MAJOR_VERSION%%_gen.py -%%PYTHON_SITELIBDIR%%/gnuradio/channels/distortion_%%MAJOR_VERSION%%_gen.pyc -%%PYTHON_SITELIBDIR%%/gnuradio/channels/distortion_%%MAJOR_VERSION%%_gen.pyo +%%PYTHON_SITELIBDIR%%/gnuradio/channels/distortion_3_gen.py +%%PYTHON_SITELIBDIR%%/gnuradio/channels/distortion_3_gen.pyc +%%PYTHON_SITELIBDIR%%/gnuradio/channels/distortion_3_gen.pyo %%PYTHON_SITELIBDIR%%/gnuradio/channels/impairments.py %%PYTHON_SITELIBDIR%%/gnuradio/channels/impairments.pyc %%PYTHON_SITELIBDIR%%/gnuradio/channels/impairments.pyo @@ -1294,9 +1318,18 @@ lib/libvolk.so.1.0 %%PYTHON_SITELIBDIR%%/gnuradio/channels/quantizer.py %%PYTHON_SITELIBDIR%%/gnuradio/channels/quantizer.pyc %%PYTHON_SITELIBDIR%%/gnuradio/channels/quantizer.pyo +%%PYTHON_SITELIBDIR%%/gnuradio/ctrlport/GNURadioControlPortClient.py +%%PYTHON_SITELIBDIR%%/gnuradio/ctrlport/GNURadioControlPortClient.pyc +%%PYTHON_SITELIBDIR%%/gnuradio/ctrlport/GNURadioControlPortClient.pyo %%PYTHON_SITELIBDIR%%/gnuradio/ctrlport/GrDataPlotter.py %%PYTHON_SITELIBDIR%%/gnuradio/ctrlport/GrDataPlotter.pyc %%PYTHON_SITELIBDIR%%/gnuradio/ctrlport/GrDataPlotter.pyo +%%PYTHON_SITELIBDIR%%/gnuradio/ctrlport/RPCConnection.py +%%PYTHON_SITELIBDIR%%/gnuradio/ctrlport/RPCConnection.pyc +%%PYTHON_SITELIBDIR%%/gnuradio/ctrlport/RPCConnection.pyo +%%PYTHON_SITELIBDIR%%/gnuradio/ctrlport/__init__.py +%%PYTHON_SITELIBDIR%%/gnuradio/ctrlport/__init__.pyc +%%PYTHON_SITELIBDIR%%/gnuradio/ctrlport/__init__.pyo %%PYTHON_SITELIBDIR%%/gnuradio/ctrlport/icon.png %%PYTHON_SITELIBDIR%%/gnuradio/ctrlport/monitor.py %%PYTHON_SITELIBDIR%%/gnuradio/ctrlport/monitor.pyc @@ -1411,6 +1444,9 @@ lib/libvolk.so.1.0 %%PYTHON_SITELIBDIR%%/gnuradio/dtv/dtv_swig.py %%PYTHON_SITELIBDIR%%/gnuradio/dtv/dtv_swig.pyc %%PYTHON_SITELIBDIR%%/gnuradio/dtv/dtv_swig.pyo +%%PYTHON_SITELIBDIR%%/gnuradio/eng_arg.py +%%PYTHON_SITELIBDIR%%/gnuradio/eng_arg.pyc +%%PYTHON_SITELIBDIR%%/gnuradio/eng_arg.pyo %%PYTHON_SITELIBDIR%%/gnuradio/eng_notation.py %%PYTHON_SITELIBDIR%%/gnuradio/eng_notation.pyc %%PYTHON_SITELIBDIR%%/gnuradio/eng_notation.pyo @@ -1536,9 +1572,9 @@ lib/libvolk.so.1.0 %%PYTHON_SITELIBDIR%%/gnuradio/gr/gr_threading.py %%PYTHON_SITELIBDIR%%/gnuradio/gr/gr_threading.pyc %%PYTHON_SITELIBDIR%%/gnuradio/gr/gr_threading.pyo -%%PYTHON_SITELIBDIR%%/gnuradio/gr/gr_threading_2%%MAJOR_VERSION%%.py -%%PYTHON_SITELIBDIR%%/gnuradio/gr/gr_threading_2%%MAJOR_VERSION%%.pyc -%%PYTHON_SITELIBDIR%%/gnuradio/gr/gr_threading_2%%MAJOR_VERSION%%.pyo +%%PYTHON_SITELIBDIR%%/gnuradio/gr/gr_threading_23.py +%%PYTHON_SITELIBDIR%%/gnuradio/gr/gr_threading_23.pyc +%%PYTHON_SITELIBDIR%%/gnuradio/gr/gr_threading_23.pyo %%PYTHON_SITELIBDIR%%/gnuradio/gr/gr_threading_24.py %%PYTHON_SITELIBDIR%%/gnuradio/gr/gr_threading_24.pyc %%PYTHON_SITELIBDIR%%/gnuradio/gr/gr_threading_24.pyo @@ -1888,16 +1924,16 @@ lib/libvolk.so.1.0 %%PYTHON_SITELIBDIR%%/gnuradio/trellis/trellis_swig.py %%PYTHON_SITELIBDIR%%/gnuradio/trellis/trellis_swig.pyc %%PYTHON_SITELIBDIR%%/gnuradio/trellis/trellis_swig.pyo -%%PYTHON_SITELIBDIR%%/gnuradio/uhd/__init__.py -%%PYTHON_SITELIBDIR%%/gnuradio/uhd/__init__.pyc -%%PYTHON_SITELIBDIR%%/gnuradio/uhd/__init__.pyo -%%PYTHON_SITELIBDIR%%/gnuradio/uhd/_uhd_swig.so -%%PYTHON_SITELIBDIR%%/gnuradio/uhd/uhd_siggen_base.py -%%PYTHON_SITELIBDIR%%/gnuradio/uhd/uhd_siggen_base.pyc -%%PYTHON_SITELIBDIR%%/gnuradio/uhd/uhd_siggen_base.pyo -%%PYTHON_SITELIBDIR%%/gnuradio/uhd/uhd_swig.py -%%PYTHON_SITELIBDIR%%/gnuradio/uhd/uhd_swig.pyc -%%PYTHON_SITELIBDIR%%/gnuradio/uhd/uhd_swig.pyo +%%USRP%%%%PYTHON_SITELIBDIR%%/gnuradio/uhd/__init__.py +%%USRP%%%%PYTHON_SITELIBDIR%%/gnuradio/uhd/__init__.pyc +%%USRP%%%%PYTHON_SITELIBDIR%%/gnuradio/uhd/__init__.pyo +%%USRP%%%%PYTHON_SITELIBDIR%%/gnuradio/uhd/_uhd_swig.so +%%USRP%%%%PYTHON_SITELIBDIR%%/gnuradio/uhd/uhd_siggen_base.py +%%USRP%%%%PYTHON_SITELIBDIR%%/gnuradio/uhd/uhd_siggen_base.pyc +%%USRP%%%%PYTHON_SITELIBDIR%%/gnuradio/uhd/uhd_siggen_base.pyo +%%USRP%%%%PYTHON_SITELIBDIR%%/gnuradio/uhd/uhd_swig.py +%%USRP%%%%PYTHON_SITELIBDIR%%/gnuradio/uhd/uhd_swig.pyc +%%USRP%%%%PYTHON_SITELIBDIR%%/gnuradio/uhd/uhd_swig.pyo %%PYTHON_SITELIBDIR%%/gnuradio/video_sdl/__init__.py %%PYTHON_SITELIBDIR%%/gnuradio/video_sdl/__init__.pyc %%PYTHON_SITELIBDIR%%/gnuradio/video_sdl/__init__.pyo @@ -2108,19 +2144,15 @@ libdata/pkgconfig/gnuradio-pager.pc libdata/pkgconfig/gnuradio-qtgui.pc libdata/pkgconfig/gnuradio-runtime.pc libdata/pkgconfig/gnuradio-trellis.pc -libdata/pkgconfig/gnuradio-uhd.pc +%%USRP%%libdata/pkgconfig/gnuradio-uhd.pc libdata/pkgconfig/gnuradio-video-sdl.pc libdata/pkgconfig/gnuradio-vocoder.pc libdata/pkgconfig/gnuradio-wavelet.pc libdata/pkgconfig/gr-wxgui.pc libdata/pkgconfig/volk.pc libexec/gnuradio/grc_setup_freedesktop -%%PORTDOCS%%%%DOCSDIR%%/README.analog -%%PORTDOCS%%%%DOCSDIR%%/README.blocks -%%PORTDOCS%%%%DOCSDIR%%/README.channels -%%PORTDOCS%%%%DOCSDIR%%/README.dtv -%%PORTDOCS%%%%DOCSDIR%%/README.fec %%DATADIR%%/examples/analog/fmtest.py +%%DATADIR%%/examples/analog/noise_power.grc %%DATADIR%%/examples/atsc/README %%DATADIR%%/examples/atsc/atsc_rx.py %%DATADIR%%/examples/audio/audio_copy.py @@ -2139,6 +2171,7 @@ libexec/gnuradio/grc_setup_freedesktop %%DATADIR%%/examples/audio/spectrum_inversion.py %%DATADIR%%/examples/audio/test_resampler.py %%DATADIR%%/examples/blocks/matrix_multiplexer.grc +%%DATADIR%%/examples/blocks/peak_detector2.grc %%DATADIR%%/examples/blocks/vector_source_with_tags.grc %%DATADIR%%/examples/channels/channel_tone_response.grc %%DATADIR%%/examples/channels/demo_gmsk.grc @@ -2147,6 +2180,7 @@ libexec/gnuradio/grc_setup_freedesktop %%DATADIR%%/examples/channels/demo_quantization.grc %%DATADIR%%/examples/channels/demo_spec_an.grc %%DATADIR%%/examples/channels/demo_two_tone.grc +%%DATADIR%%/examples/digital/burst_shaper.grc %%DATADIR%%/examples/digital/demod/ber_simulation.grc %%DATADIR%%/examples/digital/demod/constellation_soft_decoder.grc %%DATADIR%%/examples/digital/demod/digital_freq_lock.grc @@ -2156,6 +2190,7 @@ libexec/gnuradio/grc_setup_freedesktop %%DATADIR%%/examples/digital/demod/pam_sync.grc %%DATADIR%%/examples/digital/demod/pam_timing.grc %%DATADIR%%/examples/digital/demod/test_corr_and_sync.grc +%%DATADIR%%/examples/digital/demod/test_corr_est.grc %%DATADIR%%/examples/digital/demod/uhd_corr_and_sync_rx.grc %%DATADIR%%/examples/digital/demod/uhd_corr_and_sync_tx.grc %%DATADIR%%/examples/digital/example_costas.py @@ -2189,7 +2224,7 @@ libexec/gnuradio/grc_setup_freedesktop %%DATADIR%%/examples/fcd/fcd_fft.grc %%DATADIR%%/examples/fcd/fcd_nfm_rx %%DATADIR%%/examples/fcd/fcd_nfm_rx.grc -%%DATADIR%%/examples/fec/271.127.%%MAJOR_VERSION%%.112 +%%DATADIR%%/examples/fec/271.127.3.112 %%DATADIR%%/examples/fec/ber_curve_gen.grc %%DATADIR%%/examples/fec/ber_test.grc %%DATADIR%%/examples/fec/fecapi_async_decoders.grc @@ -2205,6 +2240,7 @@ libexec/gnuradio/grc_setup_freedesktop %%DATADIR%%/examples/filter/chirp_channelize.py %%DATADIR%%/examples/filter/decimate.py %%DATADIR%%/examples/filter/fft_filter_ccc.py +%%DATADIR%%/examples/filter/filter_taps.grc %%DATADIR%%/examples/filter/fir_filter_ccc.py %%DATADIR%%/examples/filter/fir_filter_fff.py %%DATADIR%%/examples/filter/gr_filtdes_api.py @@ -2222,20 +2258,20 @@ libexec/gnuradio/grc_setup_freedesktop %%DATADIR%%/examples/grc/xmlrpc/xmlrpc_client.grc %%DATADIR%%/examples/grc/xmlrpc/xmlrpc_client_script.py %%DATADIR%%/examples/grc/xmlrpc/xmlrpc_server.grc -%%DATADIR%%/examples/hf_explorer/README -%%DATADIR%%/examples/hf_explorer/hfx.py -%%DATADIR%%/examples/hf_explorer/hfx_help -%%DATADIR%%/examples/hf_radio/README.TXT -%%DATADIR%%/examples/hf_radio/hfir.sci -%%DATADIR%%/examples/hf_radio/input.py -%%DATADIR%%/examples/hf_radio/output.py -%%DATADIR%%/examples/hf_radio/radio.py -%%DATADIR%%/examples/hf_radio/radio.xml -%%DATADIR%%/examples/hf_radio/ssb_taps -%%DATADIR%%/examples/hf_radio/ssbagc.py -%%DATADIR%%/examples/hf_radio/ssbdemod.py -%%DATADIR%%/examples/hf_radio/startup.py -%%DATADIR%%/examples/hf_radio/ui.py +%%USRP%%%%DATADIR%%/examples/hf_explorer/README +%%USRP%%%%DATADIR%%/examples/hf_explorer/hfx.py +%%USRP%%%%DATADIR%%/examples/hf_explorer/hfx_help +%%USRP%%%%DATADIR%%/examples/hf_radio/README.TXT +%%USRP%%%%DATADIR%%/examples/hf_radio/hfir.sci +%%USRP%%%%DATADIR%%/examples/hf_radio/input.py +%%USRP%%%%DATADIR%%/examples/hf_radio/output.py +%%USRP%%%%DATADIR%%/examples/hf_radio/radio.py +%%USRP%%%%DATADIR%%/examples/hf_radio/radio.xml +%%USRP%%%%DATADIR%%/examples/hf_radio/ssb_taps +%%USRP%%%%DATADIR%%/examples/hf_radio/ssbagc.py +%%USRP%%%%DATADIR%%/examples/hf_radio/ssbdemod.py +%%USRP%%%%DATADIR%%/examples/hf_radio/startup.py +%%USRP%%%%DATADIR%%/examples/hf_radio/ui.py %%DATADIR%%/examples/metadata/file_metadata_sink.grc %%DATADIR%%/examples/metadata/file_metadata_source.grc %%DATADIR%%/examples/metadata/file_metadata_vector_sink.grc @@ -2281,27 +2317,27 @@ libexec/gnuradio/grc_setup_freedesktop %%DATADIR%%/examples/trellis/fsm_files/awgn1o2_4.fsm %%DATADIR%%/examples/trellis/fsm_files/awgn1o2_4rsc.fsm %%DATADIR%%/examples/trellis/fsm_files/awgn1o2_8.fsm -%%DATADIR%%/examples/trellis/fsm_files/awgn2o%%MAJOR_VERSION%%_16.fsm -%%DATADIR%%/examples/trellis/fsm_files/awgn2o%%MAJOR_VERSION%%_16ungerboeck.fsm -%%DATADIR%%/examples/trellis/fsm_files/awgn2o%%MAJOR_VERSION%%_16ungerboecka.fsm -%%DATADIR%%/examples/trellis/fsm_files/awgn2o%%MAJOR_VERSION%%_%%MAJOR_VERSION%%2ungerboeck.fsm -%%DATADIR%%/examples/trellis/fsm_files/awgn2o%%MAJOR_VERSION%%_%%MAJOR_VERSION%%2ungerboecka.fsm -%%DATADIR%%/examples/trellis/fsm_files/awgn2o%%MAJOR_VERSION%%_4.fsm -%%DATADIR%%/examples/trellis/fsm_files/awgn2o%%MAJOR_VERSION%%_4_msb.fsm -%%DATADIR%%/examples/trellis/fsm_files/awgn2o%%MAJOR_VERSION%%_4_msbG.fsm -%%DATADIR%%/examples/trellis/fsm_files/awgn2o%%MAJOR_VERSION%%_4ungerboeck.fsm -%%DATADIR%%/examples/trellis/fsm_files/awgn2o%%MAJOR_VERSION%%_4ungerboecka.fsm -%%DATADIR%%/examples/trellis/fsm_files/awgn2o%%MAJOR_VERSION%%_64ungerboeck.fsm -%%DATADIR%%/examples/trellis/fsm_files/awgn2o%%MAJOR_VERSION%%_64ungerboecka.fsm -%%DATADIR%%/examples/trellis/fsm_files/awgn2o%%MAJOR_VERSION%%_8.fsm -%%DATADIR%%/examples/trellis/fsm_files/awgn2o%%MAJOR_VERSION%%_8ungerboeck.fsm -%%DATADIR%%/examples/trellis/fsm_files/awgn2o%%MAJOR_VERSION%%_8ungerboecka.fsm +%%DATADIR%%/examples/trellis/fsm_files/awgn2o3_16.fsm +%%DATADIR%%/examples/trellis/fsm_files/awgn2o3_16ungerboeck.fsm +%%DATADIR%%/examples/trellis/fsm_files/awgn2o3_16ungerboecka.fsm +%%DATADIR%%/examples/trellis/fsm_files/awgn2o3_32ungerboeck.fsm +%%DATADIR%%/examples/trellis/fsm_files/awgn2o3_32ungerboecka.fsm +%%DATADIR%%/examples/trellis/fsm_files/awgn2o3_4.fsm +%%DATADIR%%/examples/trellis/fsm_files/awgn2o3_4_msb.fsm +%%DATADIR%%/examples/trellis/fsm_files/awgn2o3_4_msbG.fsm +%%DATADIR%%/examples/trellis/fsm_files/awgn2o3_4ungerboeck.fsm +%%DATADIR%%/examples/trellis/fsm_files/awgn2o3_4ungerboecka.fsm +%%DATADIR%%/examples/trellis/fsm_files/awgn2o3_64ungerboeck.fsm +%%DATADIR%%/examples/trellis/fsm_files/awgn2o3_64ungerboecka.fsm +%%DATADIR%%/examples/trellis/fsm_files/awgn2o3_8.fsm +%%DATADIR%%/examples/trellis/fsm_files/awgn2o3_8ungerboeck.fsm +%%DATADIR%%/examples/trellis/fsm_files/awgn2o3_8ungerboecka.fsm %%DATADIR%%/examples/trellis/fsm_files/awgn2o4_4.fsm %%DATADIR%%/examples/trellis/fsm_files/disconnected.fsm %%DATADIR%%/examples/trellis/fsm_files/irregular.fsm %%DATADIR%%/examples/trellis/fsm_files/joint_16_16.fsm %%DATADIR%%/examples/trellis/fsm_files/joint_4_16.fsm -%%DATADIR%%/examples/trellis/fsm_files/rep%%MAJOR_VERSION%%.fsm +%%DATADIR%%/examples/trellis/fsm_files/rep3.fsm %%DATADIR%%/examples/trellis/fsm_files/rep5.fsm %%DATADIR%%/examples/trellis/fsm_files/simple.fsm %%DATADIR%%/examples/trellis/fsm_files/uncoded4.fsm @@ -2314,36 +2350,36 @@ libexec/gnuradio/grc_setup_freedesktop %%DATADIR%%/examples/trellis/test_tcm.py %%DATADIR%%/examples/trellis/turbo_equalization.grc %%DATADIR%%/examples/trellis/viterbi_equalization.grc -%%DATADIR%%/examples/uhd/fm_tx4.py -%%DATADIR%%/examples/uhd/fm_tx_2_daughterboards.py -%%DATADIR%%/examples/uhd/max_power.py -%%DATADIR%%/examples/uhd/tags_demo -%%DATADIR%%/examples/uhd/uhd_const_wave.grc -%%DATADIR%%/examples/uhd/uhd_dpsk_mod.grc -%%DATADIR%%/examples/uhd/uhd_fft.grc -%%DATADIR%%/examples/uhd/uhd_rx_dpsk.grc -%%DATADIR%%/examples/uhd/uhd_two_tone_loopback.grc -%%DATADIR%%/examples/uhd/uhd_tx_dpsk.grc -%%DATADIR%%/examples/uhd/uhd_wbfm_receive.grc -%%DATADIR%%/examples/uhd/usrp_am_mw_rcv.py -%%DATADIR%%/examples/uhd/usrp_nbfm_ptt.py -%%DATADIR%%/examples/uhd/usrp_nbfm_rcv.py -%%DATADIR%%/examples/uhd/usrp_spectrum_sense.py -%%DATADIR%%/examples/uhd/usrp_tv_rcv.py -%%DATADIR%%/examples/uhd/usrp_tv_rcv_nogui.py -%%DATADIR%%/examples/uhd/usrp_wfm_rcv.py -%%DATADIR%%/examples/uhd/usrp_wfm_rcv2_nogui.py -%%DATADIR%%/examples/uhd/usrp_wfm_rcv_fmdet.py -%%DATADIR%%/examples/uhd/usrp_wfm_rcv_nogui.py -%%DATADIR%%/examples/uhd/usrp_wfm_rcv_pll.py -%%DATADIR%%/examples/uhd/usrp_wfm_rcv_sca.py -%%DATADIR%%/examples/uhd/usrp_wxapt_rcv.py +%%USRP%%%%DATADIR%%/examples/uhd/fm_tx4.py +%%USRP%%%%DATADIR%%/examples/uhd/fm_tx_2_daughterboards.py +%%USRP%%%%DATADIR%%/examples/uhd/max_power.py +%%USRP%%%%DATADIR%%/examples/uhd/tags_demo +%%USRP%%%%DATADIR%%/examples/uhd/uhd_const_wave.grc +%%USRP%%%%DATADIR%%/examples/uhd/uhd_dpsk_mod.grc +%%USRP%%%%DATADIR%%/examples/uhd/uhd_fft.grc +%%USRP%%%%DATADIR%%/examples/uhd/uhd_rx_dpsk.grc +%%USRP%%%%DATADIR%%/examples/uhd/uhd_two_tone_loopback.grc +%%USRP%%%%DATADIR%%/examples/uhd/uhd_tx_dpsk.grc +%%USRP%%%%DATADIR%%/examples/uhd/uhd_wbfm_receive.grc +%%USRP%%%%DATADIR%%/examples/uhd/usrp_am_mw_rcv.py +%%USRP%%%%DATADIR%%/examples/uhd/usrp_nbfm_ptt.py +%%USRP%%%%DATADIR%%/examples/uhd/usrp_nbfm_rcv.py +%%USRP%%%%DATADIR%%/examples/uhd/usrp_spectrum_sense.py +%%USRP%%%%DATADIR%%/examples/uhd/usrp_tv_rcv.py +%%USRP%%%%DATADIR%%/examples/uhd/usrp_tv_rcv_nogui.py +%%USRP%%%%DATADIR%%/examples/uhd/usrp_wfm_rcv.py +%%USRP%%%%DATADIR%%/examples/uhd/usrp_wfm_rcv2_nogui.py +%%USRP%%%%DATADIR%%/examples/uhd/usrp_wfm_rcv_fmdet.py *** DIFF OUTPUT TRUNCATED AT 1000 LINES ***