diff options
author | Josh Blum | 2011-03-06 11:18:27 -0800 |
---|---|---|
committer | Josh Blum | 2011-03-06 11:18:27 -0800 |
commit | 7070c10d7ac59adcd597c18ec2c83b1b59ed87e9 (patch) | |
tree | af1d8cebe59fb1aacd03f73485ec4584a6c2f5ef /grc/grc_gnuradio/blks2/__init__.py | |
parent | 19c0865b4b6c94f86679151e9f52c99331b1f0b9 (diff) | |
download | gnuradio-7070c10d7ac59adcd597c18ec2c83b1b59ed87e9.tar.gz gnuradio-7070c10d7ac59adcd597c18ec2c83b1b59ed87e9.tar.bz2 gnuradio-7070c10d7ac59adcd597c18ec2c83b1b59ed87e9.zip |
grc: rework the probe blocks and how they fit into grc
Removed the source on all probe blocks.
Advertise the probe-able function in the docs.
Added missing signal probe block.
Removed probe function and variable sink blocks.
Removed all supporting grc_gnuradio python files.
Added variable_function_probe block that can probe arbitrary functions on a block.
All the code needed by the function probe is available is the make tag.
To display the value of a probe block, use the variable probe block, and a gui widget.
To disply the value of a stream, do the same but use the signal probe block.
Simple see :-)
If more types other than floats need to be read from the stream,
the signal probe should be extended.
Diffstat (limited to 'grc/grc_gnuradio/blks2/__init__.py')
-rw-r--r-- | grc/grc_gnuradio/blks2/__init__.py | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/grc/grc_gnuradio/blks2/__init__.py b/grc/grc_gnuradio/blks2/__init__.py index cb1196f25..fde76f256 100644 --- a/grc/grc_gnuradio/blks2/__init__.py +++ b/grc/grc_gnuradio/blks2/__init__.py @@ -1,4 +1,4 @@ -# Copyright 2008, 2009 Free Software Foundation, Inc. +# Copyright 2008-2011 Free Software Foundation, Inc. # # This file is part of GNU Radio # @@ -23,6 +23,4 @@ from packet import options, packet_encoder, packet_decoder, \ packet_mod_b, packet_mod_s, packet_mod_i, packet_mod_f, packet_mod_c, \ packet_demod_b, packet_demod_s, packet_demod_i, packet_demod_f, packet_demod_c from error_rate import error_rate -from probe import probe_function, probe_avg_mag_sqrd_c, probe_avg_mag_sqrd_f, probe_density_b, probe_mpsk_snr_c -from variable_sink import variable_sink_b, variable_sink_s, variable_sink_i, variable_sink_f, variable_sink_c from tcp import tcp_source, tcp_sink |