Updated gnuradio-examples to 3.0.2:
The following new examples categories were added to this package: * apss * channel-coding * digital-voice * multi-antenna * multi-usrp * networking
This commit is contained in:
parent
44727aba72
commit
88cc2da2d7
3 changed files with 177 additions and 79 deletions
|
@ -1,71 +1,104 @@
|
|||
# $NetBSD: Makefile,v 1.8 2006/05/11 11:09:53 rillig Exp $
|
||||
# $NetBSD: Makefile,v 1.9 2006/11/13 17:17:33 wulf Exp $
|
||||
|
||||
DISTNAME= gnuradio-examples-0.7
|
||||
PKGNAME= gnuradio-examples-${VERSION}
|
||||
COMMENT= GUI framework for GNU Radio based on wxPython
|
||||
COMMENT= Examples for GNU Radio
|
||||
|
||||
PYTHON_PATCH_SCRIPTS+= python/audio/audio_copy.py
|
||||
PYTHON_PATCH_SCRIPTS+= python/audio/audio_play.py
|
||||
PYTHON_PATCH_SCRIPTS+= python/audio/audio_to_file.py
|
||||
PYTHON_PATCH_SCRIPTS+= python/audio/dial_tone.py
|
||||
PYTHON_PATCH_SCRIPTS+= python/audio/mono_tone.py
|
||||
PYTHON_PATCH_SCRIPTS+= python/audio/multi_tone.py
|
||||
PYTHON_PATCH_SCRIPTS+= python/audio/spectrum_inversion.py
|
||||
PYTHON_PATCH_SCRIPTS+= python/audio/test_resampler.py
|
||||
PYTHON_PATCH_SCRIPTS+= python/digital_voice/encdec.py
|
||||
PYTHON_PATCH_SCRIPTS+= python/gmsk2/benchmark_gmsk_rx.py
|
||||
PYTHON_PATCH_SCRIPTS+= python/gmsk2/benchmark_gmsk_tx.py
|
||||
PYTHON_PATCH_SCRIPTS+= python/gmsk2/gen_whitener.py
|
||||
PYTHON_PATCH_SCRIPTS+= python/gmsk2/gmsk_test.py
|
||||
PYTHON_PATCH_SCRIPTS+= python/gmsk2/pick_bitrate.py
|
||||
PYTHON_PATCH_SCRIPTS+= python/gmsk2/receive_path.py
|
||||
PYTHON_PATCH_SCRIPTS+= python/gmsk2/transmit_path.py
|
||||
PYTHON_PATCH_SCRIPTS+= python/gmsk2/tunnel_ip_null_mac.py
|
||||
PYTHON_PATCH_SCRIPTS+= python/mc4020/fm_demod.py
|
||||
PYTHON_PATCH_SCRIPTS+= python/mc4020/mc4020_fft.py
|
||||
PYTHON_PATCH_SCRIPTS+= python/usrp/am_rcv.py
|
||||
PYTHON_PATCH_SCRIPTS+= python/usrp/ayfabtu.py
|
||||
PYTHON_PATCH_SCRIPTS+= python/usrp/benchmark_usb.py
|
||||
PYTHON_PATCH_SCRIPTS+= python/usrp/fm_tx4.py
|
||||
PYTHON_PATCH_SCRIPTS+= python/usrp/fsk_loopback.py
|
||||
PYTHON_PATCH_SCRIPTS+= python/usrp/fsk_rx.py
|
||||
PYTHON_PATCH_SCRIPTS+= python/usrp/fsk_tx.py
|
||||
PYTHON_PATCH_SCRIPTS+= python/usrp/max_power.py
|
||||
PYTHON_PATCH_SCRIPTS+= python/usrp/test_counting.py
|
||||
PYTHON_PATCH_SCRIPTS+= python/usrp/test_dft_analysis.py
|
||||
PYTHON_PATCH_SCRIPTS+= python/usrp/test_dft_synth.py
|
||||
PYTHON_PATCH_SCRIPTS+= python/usrp/test_digital_loopback_counting.py
|
||||
PYTHON_PATCH_SCRIPTS+= python/usrp/test_digital_loopback_lfsr.py
|
||||
PYTHON_PATCH_SCRIPTS+= python/usrp/tvrx_am_rcv_gui.py
|
||||
PYTHON_PATCH_SCRIPTS+= python/usrp/tvrx_tv_rcv.py
|
||||
PYTHON_PATCH_SCRIPTS+= python/usrp/tweak_adc_offset.py
|
||||
PYTHON_PATCH_SCRIPTS+= python/usrp/usrp_fft.py
|
||||
PYTHON_PATCH_SCRIPTS+= python/usrp/usrp_fft_old.py
|
||||
PYTHON_PATCH_SCRIPTS+= python/usrp/usrp_nbfm_ptt.py
|
||||
PYTHON_PATCH_SCRIPTS+= python/usrp/usrp_nbfm_rcv.py
|
||||
PYTHON_PATCH_SCRIPTS+= python/usrp/usrp_oscope.py
|
||||
PYTHON_PATCH_SCRIPTS+= python/usrp/usrp_rx_cfile.py
|
||||
PYTHON_PATCH_SCRIPTS+= python/usrp/usrp_rx_file.py
|
||||
PYTHON_PATCH_SCRIPTS+= python/usrp/usrp_siggen.py
|
||||
PYTHON_PATCH_SCRIPTS+= python/usrp/usrp_wfm_rcv.py
|
||||
PYTHON_PATCH_SCRIPTS+= python/usrp/usrp_wfm_rcv_nogui.py
|
||||
PYTHON_PATCH_SCRIPTS+= python/usrp/usrp_wfm_rcv_pll.py
|
||||
PYTHON_PATCH_SCRIPTS+= python/usrp/usrp_wfm_rcv2_nogui.py
|
||||
PYTHON_PATCH_SCRIPTS+= python/usrp/usrp_wxapt_rcv.py
|
||||
PYTHON_PATCH_SCRIPTS+= python/usrp/wfm_rcv_file.py
|
||||
.include "../../meta-pkgs/gnuradio/Makefile.common"
|
||||
|
||||
CONFIGURE_ARGS+=--enable-gnuradio-examples
|
||||
|
||||
EXAMPLE_DIR= ${LOCALBASE}/share/examples/gnuradio/python
|
||||
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/apps/hf_explorer/hfx2.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/apps/hf_radio/radio.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/apps/hf_radio/ui.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/audio/audio_copy.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/audio/audio_fft.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/audio/audio_play.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/audio/audio_to_file.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/audio/dial_squelch.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/audio/dial_tone.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/audio/mono_tone.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/audio/multi_tone.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/audio/spectrum_inversion.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/audio/test_resampler.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/channel-coding/fsm_utils.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/channel-coding/test_sccc_hard.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/channel-coding/test_sccc_soft.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/channel-coding/test_sccc_turbo.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/channel-coding/test_tcm.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/channel-coding/test_tcm1.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/channel-coding/test_tcm2.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/channel-coding/test_tcm_combined.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/channel-coding/test_tcm_parallel.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/channel-coding/test_turbo_equalization.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/channel-coding/test_turbo_equalization1.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/channel-coding/test_turbo_equalization2.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/channel-coding/test_viterbi_equalization.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/channel-coding/test_viterbi_equalization1.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/digital/benchmark_rx.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/digital/benchmark_tx.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/digital/fusb_options.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/digital/gen_whitener.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/digital/pick_bitrate.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/digital/receive_path.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/digital/rx_voice.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/digital/transmit_path.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/digital/tunnel.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/digital/tx_voice.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/digital_voice/encdec.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/multi-antenna/multi_fft.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/multi-antenna/multi_file.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/multi-antenna/multi_scope.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/multi_usrp/multi_usrp_oscope.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/multi_usrp/multi_usrp_rx_cfile.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/networking/measurement_slave.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/usrp/am_rcv.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/usrp/ayfabtu.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/usrp/ayfabtu.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/usrp/benchmark_usb.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/usrp/dsb_tx.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/usrp/flexrf_debug.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/usrp/flexrf_siggen.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/usrp/fm_tx4.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/usrp/fm_tx_2_daughterboards.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/usrp/max_power.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/usrp/siggen_min2.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/usrp/test_counting.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/usrp/test_dft_analysis.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/usrp/test_dft_synth.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/usrp/test_digital_loopback_counting.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/usrp/test_digital_loopback_lfsr.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/usrp/tvrx_am_rcv_gui.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/usrp/usrp_fft.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/usrp/usrp_fft_old.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/usrp/usrp_nbfm_ptt.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/usrp/usrp_nbfm_rcv.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/usrp/usrp_oscope.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/usrp/usrp_rx_cfile.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/usrp/usrp_rx_nogui.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/usrp/usrp_siggen.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/usrp/usrp_tv_rcv.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/usrp/usrp_tv_rcv_nogui.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/usrp/usrp_wfm_rcv.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/usrp/usrp_wfm_rcv2_nogui.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/usrp/usrp_wfm_rcv_nogui.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/usrp/usrp_wfm_rcv_pll.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/usrp/usrp_wxapt_rcv.py
|
||||
PYTHON_PATCH_SCRIPTS+= gnuradio-examples/python/usrp/wfm_rcv_file.py
|
||||
|
||||
do-install:
|
||||
set -e; \
|
||||
for d in audio digital_voice gmsk2 mc4020 usrp; \
|
||||
set -e; \
|
||||
cd ${WRKSRC}/gnuradio-examples/python; \
|
||||
for d in `find * -type d`; \
|
||||
do \
|
||||
${INSTALL_SCRIPT_DIR} ${EXAMPLE_DIR}/"$$d"; \
|
||||
${INSTALL_SCRIPT} ${WRKSRC}/python/"$$d"/*.py \
|
||||
${EXAMPLE_DIR}/"$$d"; \
|
||||
done; \
|
||||
for f in `find . \! -name "Makefile*" -type f`; \
|
||||
do \
|
||||
${INSTALL_SCRIPT} "$$f" ${EXAMPLE_DIR}/"$$f"; \
|
||||
done
|
||||
|
||||
.include "../../meta-pkgs/gnuradio/Makefile.common"
|
||||
|
||||
.include "../../ham/gnuradio-wxgui/buildlink3.mk"
|
||||
.include "../../mk/bsd.pkg.mk"
|
||||
|
|
|
@ -1,46 +1,104 @@
|
|||
@comment $NetBSD: PLIST,v 1.4 2006/05/11 11:09:53 rillig Exp $
|
||||
@comment $NetBSD: PLIST,v 1.5 2006/11/13 17:17:33 wulf Exp $
|
||||
share/examples/gnuradio/python/apps/README
|
||||
share/examples/gnuradio/python/apps/hf_explorer/README
|
||||
share/examples/gnuradio/python/apps/hf_explorer/hfx2.py
|
||||
share/examples/gnuradio/python/apps/hf_explorer/hfx_help
|
||||
share/examples/gnuradio/python/apps/hf_radio/README.TXT
|
||||
share/examples/gnuradio/python/apps/hf_radio/hfir.sci
|
||||
share/examples/gnuradio/python/apps/hf_radio/input.py
|
||||
share/examples/gnuradio/python/apps/hf_radio/output.py
|
||||
share/examples/gnuradio/python/apps/hf_radio/radio.py
|
||||
share/examples/gnuradio/python/apps/hf_radio/radio.xml
|
||||
share/examples/gnuradio/python/apps/hf_radio/ssb_taps
|
||||
share/examples/gnuradio/python/apps/hf_radio/ssbagc.py
|
||||
share/examples/gnuradio/python/apps/hf_radio/ssbdemod.py
|
||||
share/examples/gnuradio/python/apps/hf_radio/startup.py
|
||||
share/examples/gnuradio/python/apps/hf_radio/ui.py
|
||||
share/examples/gnuradio/python/audio/audio_copy.py
|
||||
share/examples/gnuradio/python/audio/audio_fft.py
|
||||
share/examples/gnuradio/python/audio/audio_play.py
|
||||
share/examples/gnuradio/python/audio/audio_to_file.py
|
||||
share/examples/gnuradio/python/audio/dial_squelch.py
|
||||
share/examples/gnuradio/python/audio/dial_tone.py
|
||||
share/examples/gnuradio/python/audio/dialtone_v.py
|
||||
share/examples/gnuradio/python/audio/mono_tone.py
|
||||
share/examples/gnuradio/python/audio/multi_tone.py
|
||||
share/examples/gnuradio/python/audio/spectrum_inversion.py
|
||||
share/examples/gnuradio/python/audio/test_resampler.py
|
||||
share/examples/gnuradio/python/channel-coding/README
|
||||
share/examples/gnuradio/python/channel-coding/fsm_files/awgn1o2_128.fsm
|
||||
share/examples/gnuradio/python/channel-coding/fsm_files/awgn2o3_4_msb.fsm
|
||||
share/examples/gnuradio/python/channel-coding/fsm_files/awgn1o2_16.fsm
|
||||
share/examples/gnuradio/python/channel-coding/fsm_files/awgn1o2_4.fsm
|
||||
share/examples/gnuradio/python/channel-coding/fsm_files/awgn1o2_8.fsm
|
||||
share/examples/gnuradio/python/channel-coding/fsm_files/awgn2o3_16.fsm
|
||||
share/examples/gnuradio/python/channel-coding/fsm_files/awgn2o3_4.fsm
|
||||
share/examples/gnuradio/python/channel-coding/fsm_files/awgn2o3_4_msbG.fsm
|
||||
share/examples/gnuradio/python/channel-coding/fsm_files/awgn2o3_8.fsm
|
||||
share/examples/gnuradio/python/channel-coding/fsm_files/awgn2o4_4.fsm
|
||||
share/examples/gnuradio/python/channel-coding/fsm_files/disconnected.fsm
|
||||
share/examples/gnuradio/python/channel-coding/fsm_files/rep3.fsm
|
||||
share/examples/gnuradio/python/channel-coding/fsm_files/rep5.fsm
|
||||
share/examples/gnuradio/python/channel-coding/fsm_files/simple.fsm
|
||||
share/examples/gnuradio/python/channel-coding/fsm_utils.py
|
||||
share/examples/gnuradio/python/channel-coding/test_sccc_hard.py
|
||||
share/examples/gnuradio/python/channel-coding/test_sccc_soft.py
|
||||
share/examples/gnuradio/python/channel-coding/test_sccc_turbo.py
|
||||
share/examples/gnuradio/python/channel-coding/test_tcm.py
|
||||
share/examples/gnuradio/python/channel-coding/test_tcm1.py
|
||||
share/examples/gnuradio/python/channel-coding/test_tcm2.py
|
||||
share/examples/gnuradio/python/channel-coding/test_tcm_combined.py
|
||||
share/examples/gnuradio/python/channel-coding/test_tcm_parallel.py
|
||||
share/examples/gnuradio/python/channel-coding/test_turbo_equalization.py
|
||||
share/examples/gnuradio/python/channel-coding/test_turbo_equalization1.py
|
||||
share/examples/gnuradio/python/channel-coding/test_turbo_equalization2.py
|
||||
share/examples/gnuradio/python/channel-coding/test_viterbi_equalization.py
|
||||
share/examples/gnuradio/python/channel-coding/test_viterbi_equalization1.py
|
||||
share/examples/gnuradio/python/digital/README
|
||||
share/examples/gnuradio/python/digital/benchmark_rx.py
|
||||
share/examples/gnuradio/python/digital/benchmark_tx.py
|
||||
share/examples/gnuradio/python/digital/fusb_options.py
|
||||
share/examples/gnuradio/python/digital/gen_whitener.py
|
||||
share/examples/gnuradio/python/digital/pick_bitrate.py
|
||||
share/examples/gnuradio/python/digital/receive_path.py
|
||||
share/examples/gnuradio/python/digital/rx_voice.py
|
||||
share/examples/gnuradio/python/digital/transmit_path.py
|
||||
share/examples/gnuradio/python/digital/tunnel.py
|
||||
share/examples/gnuradio/python/digital/tx_voice.py
|
||||
share/examples/gnuradio/python/digital_voice/encdec.py
|
||||
share/examples/gnuradio/python/gmsk2/benchmark_gmsk_rx.py
|
||||
share/examples/gnuradio/python/gmsk2/benchmark_gmsk_tx.py
|
||||
share/examples/gnuradio/python/gmsk2/gen_whitener.py
|
||||
share/examples/gnuradio/python/gmsk2/gmsk_test.py
|
||||
share/examples/gnuradio/python/gmsk2/pick_bitrate.py
|
||||
share/examples/gnuradio/python/gmsk2/receive_path.py
|
||||
share/examples/gnuradio/python/gmsk2/transmit_path.py
|
||||
share/examples/gnuradio/python/gmsk2/tunnel_ip_null_mac.py
|
||||
share/examples/gnuradio/python/mc4020/fm_demod.py
|
||||
share/examples/gnuradio/python/mc4020/mc4020_fft.py
|
||||
share/examples/gnuradio/python/multi-antenna/multi_fft.py
|
||||
share/examples/gnuradio/python/multi-antenna/multi_file.py
|
||||
share/examples/gnuradio/python/multi-antenna/multi_scope.py
|
||||
share/examples/gnuradio/python/multi_usrp/README
|
||||
share/examples/gnuradio/python/multi_usrp/multi_usrp_oscope.py
|
||||
share/examples/gnuradio/python/multi_usrp/multi_usrp_rx_cfile.py
|
||||
share/examples/gnuradio/python/networking/measurement_slave.py
|
||||
share/examples/gnuradio/python/usrp/am_rcv.py
|
||||
share/examples/gnuradio/python/usrp/ayfabtu.py
|
||||
share/examples/gnuradio/python/usrp/benchmark_usb.py
|
||||
share/examples/gnuradio/python/usrp/dsb_tx.py
|
||||
share/examples/gnuradio/python/usrp/flexrf_debug.py
|
||||
share/examples/gnuradio/python/usrp/flexrf_siggen.py
|
||||
share/examples/gnuradio/python/usrp/fm_tx4.py
|
||||
share/examples/gnuradio/python/usrp/fsk_loopback.py
|
||||
share/examples/gnuradio/python/usrp/fsk_rx.py
|
||||
share/examples/gnuradio/python/usrp/fsk_tx.py
|
||||
share/examples/gnuradio/python/usrp/fm_tx_2_daughterboards.py
|
||||
share/examples/gnuradio/python/usrp/max_power.py
|
||||
share/examples/gnuradio/python/usrp/siggen_min2.py
|
||||
share/examples/gnuradio/python/usrp/test_counting.py
|
||||
share/examples/gnuradio/python/usrp/test_dft_analysis.py
|
||||
share/examples/gnuradio/python/usrp/test_dft_synth.py
|
||||
share/examples/gnuradio/python/usrp/test_digital_loopback_counting.py
|
||||
share/examples/gnuradio/python/usrp/test_digital_loopback_lfsr.py
|
||||
share/examples/gnuradio/python/usrp/tvrx_am_rcv_gui.py
|
||||
share/examples/gnuradio/python/usrp/tvrx_tv_rcv.py
|
||||
share/examples/gnuradio/python/usrp/usrp_fft.py
|
||||
share/examples/gnuradio/python/usrp/usrp_fft_old.py
|
||||
share/examples/gnuradio/python/usrp/usrp_nbfm_ptt.py
|
||||
share/examples/gnuradio/python/usrp/usrp_nbfm_rcv.py
|
||||
share/examples/gnuradio/python/usrp/usrp_oscope.py
|
||||
share/examples/gnuradio/python/usrp/usrp_rx_cfile.py
|
||||
share/examples/gnuradio/python/usrp/usrp_rx_file.py
|
||||
share/examples/gnuradio/python/usrp/usrp_rx_nogui.py
|
||||
share/examples/gnuradio/python/usrp/usrp_siggen.py
|
||||
share/examples/gnuradio/python/usrp/usrp_tv_rcv.py
|
||||
share/examples/gnuradio/python/usrp/usrp_tv_rcv_nogui.py
|
||||
share/examples/gnuradio/python/usrp/usrp_wfm_rcv.py
|
||||
share/examples/gnuradio/python/usrp/usrp_wfm_rcv2_nogui.py
|
||||
share/examples/gnuradio/python/usrp/usrp_wfm_rcv_nogui.py
|
||||
|
@ -48,8 +106,15 @@ share/examples/gnuradio/python/usrp/usrp_wfm_rcv_pll.py
|
|||
share/examples/gnuradio/python/usrp/usrp_wxapt_rcv.py
|
||||
share/examples/gnuradio/python/usrp/wfm_rcv_file.py
|
||||
@dirrm share/examples/gnuradio/python/usrp
|
||||
@dirrm share/examples/gnuradio/python/mc4020
|
||||
@dirrm share/examples/gnuradio/python/gmsk2
|
||||
@dirrm share/examples/gnuradio/python/networking
|
||||
@dirrm share/examples/gnuradio/python/multi_usrp
|
||||
@dirrm share/examples/gnuradio/python/multi-antenna
|
||||
@dirrm share/examples/gnuradio/python/digital_voice
|
||||
@dirrm share/examples/gnuradio/python/digital
|
||||
@dirrm share/examples/gnuradio/python/channel-coding/fsm_files
|
||||
@dirrm share/examples/gnuradio/python/channel-coding
|
||||
@dirrm share/examples/gnuradio/python/audio
|
||||
@dirrm share/examples/gnuradio/python/apps/hf_radio
|
||||
@dirrm share/examples/gnuradio/python/apps/hf_explorer
|
||||
@dirrm share/examples/gnuradio/python/apps
|
||||
@dirrm share/examples/gnuradio/python
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
$NetBSD: distinfo,v 1.3 2006/04/27 03:07:42 wulf Exp $
|
||||
$NetBSD: distinfo,v 1.4 2006/11/13 17:17:33 wulf Exp $
|
||||
|
||||
SHA1 (gnuradio-examples-0.7.tar.gz) = 4e10807d0279ce22fc42d82227556265f04a8622
|
||||
RMD160 (gnuradio-examples-0.7.tar.gz) = b877ac290369d86f65864c9ab38479b3dcf7ed3d
|
||||
Size (gnuradio-examples-0.7.tar.gz) = 199144 bytes
|
||||
SHA1 (gnuradio-3.0.2.tar.gz) = 9d9a0e22c9e4fd9735f62c0145b9ceb61a33f9c2
|
||||
RMD160 (gnuradio-3.0.2.tar.gz) = 3ff771c2d13d680fb76d7ca82a6a11678c7069ae
|
||||
Size (gnuradio-3.0.2.tar.gz) = 3190212 bytes
|
||||
|
|
Loading…
Reference in a new issue