[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Commit-gnuradio] [gnuradio] 14/23: docs: adding docs for blocks::copy a
From: |
git |
Subject: |
[Commit-gnuradio] [gnuradio] 14/23: docs: adding docs for blocks::copy and digital::constellation_receiver to describe their message ports. |
Date: |
Thu, 26 Jun 2014 19:54:44 +0000 (UTC) |
This is an automated email from the git hooks/post-receive script.
trondeau pushed a commit to branch master
in repository gnuradio.
commit f489c3c6afb7665e01ece94ff2b2121df041e614
Author: Tom Rondeau <address@hidden>
Date: Thu Jun 26 14:03:37 2014 -0400
docs: adding docs for blocks::copy and digital::constellation_receiver to
describe their message ports.
---
gr-blocks/include/gnuradio/blocks/copy.h | 6 ++++++
.../include/gnuradio/digital/constellation_receiver_cb.h | 14 +++++++++++++-
2 files changed, 19 insertions(+), 1 deletion(-)
diff --git a/gr-blocks/include/gnuradio/blocks/copy.h
b/gr-blocks/include/gnuradio/blocks/copy.h
index 151ab09..a953b41 100644
--- a/gr-blocks/include/gnuradio/blocks/copy.h
+++ b/gr-blocks/include/gnuradio/blocks/copy.h
@@ -36,6 +36,12 @@ namespace gr {
* \details
* When enabled (default), this block copies its input to its
* output. When disabled, this block drops its input on the floor.
+ *
+ * Message Ports:
+ *
+ * - en (input):
+ * Receives a PMT bool message to either enable to disable
+ * copy.
*/
class BLOCKS_API copy : virtual public block
{
diff --git a/gr-digital/include/gnuradio/digital/constellation_receiver_cb.h
b/gr-digital/include/gnuradio/digital/constellation_receiver_cb.h
index b380ba6..36cfd57 100644
--- a/gr-digital/include/gnuradio/digital/constellation_receiver_cb.h
+++ b/gr-digital/include/gnuradio/digital/constellation_receiver_cb.h
@@ -41,6 +41,18 @@ namespace gr {
* loop that finds the error of the incoming signal point compared
* to its nearest constellation point. The frequency and phase of
* the NCO are updated according to this error.
+ *
+ * Message Ports:
+ *
+ * set_constellation (input):
+ * Receives a PMT any containing a new gr::digital::constellation
object.
+ * The PMT is cast back to a gr::digital::constellation_sptr
+ * and passes this to set_constellation.
+ *
+ * rotate_phase (input):
+ * Receives a PMT double to update the phase.
+ * The phase value passed in the message is added to the
+ * current phase of the receiver.
*/
class DIGITAL_API constellation_receiver_cb
: virtual public block
@@ -59,7 +71,7 @@ namespace gr {
* \param fmin minimum normalized frequency value the loop can
achieve
* \param fmax maximum normalized frequency value the loop can
achieve
*/
- static sptr make(constellation_sptr constellation,
+ static sptr make(constellation_sptr constellation,
float loop_bw, float fmin, float fmax);
virtual void phase_error_tracking(float phase_error) = 0;
- [Commit-gnuradio] [gnuradio] 07/23: qtgui: Mostly adds sunset and cool color schemes for waterfall/raster plots., (continued)
- [Commit-gnuradio] [gnuradio] 07/23: qtgui: Mostly adds sunset and cool color schemes for waterfall/raster plots., git, 2014/06/26
- [Commit-gnuradio] [gnuradio] 10/23: qtgui: allows toggling rf frequencies on/off in GRC options box., git, 2014/06/26
- [Commit-gnuradio] [gnuradio] 12/23: qtgui: freq, waterfall, and sink blocks produce a frequency message when double-clicked. Also can take in a frequency message to adjust the x-axis., git, 2014/06/26
- [Commit-gnuradio] [gnuradio] 05/23: digital: adding a rotate_phase message for the constellation_receiver to adjust the phase of the constellation., git, 2014/06/26
- [Commit-gnuradio] [gnuradio] 01/23: volk: cmake: Rename GrBoost to VolkBoost to differentiate it from GR's GrBoost. Although they set the same BOOST variables internally, this change make it clear which cmake file to include., git, 2014/06/26
- [Commit-gnuradio] [gnuradio] 09/23: qtgui: minor mods, including putting min/max lines in FFT sink behind all other lines., git, 2014/06/26
- [Commit-gnuradio] [gnuradio] 04/23: blocks: adding a message port to the copy block to enable/disable copy., git, 2014/06/26
- [Commit-gnuradio] [gnuradio] 13/23: filter: adds a message input port to frequency xlating FIR filter to update the frequency., git, 2014/06/26
- [Commit-gnuradio] [gnuradio] 03/23: digital: expose set_constellation message port in GRC for constellation_receiver., git, 2014/06/26
- [Commit-gnuradio] [gnuradio] 08/23: qtgui: adds an alternative qss file., git, 2014/06/26
- [Commit-gnuradio] [gnuradio] 14/23: docs: adding docs for blocks::copy and digital::constellation_receiver to describe their message ports.,
git <=
- [Commit-gnuradio] [gnuradio] 15/23: qtgui: dynamically adjust min/max amplitude for qtgui freq and waterfall plots., git, 2014/06/26
- [Commit-gnuradio] [gnuradio] 16/23: Merge branch 'maint', git, 2014/06/26
- [Commit-gnuradio] [gnuradio] 11/23: qtgui: for sink_x, waterfall_sink_x, and freq_sink_x, when the display is double-clicked, the center frequency is adjusted to the clicked frequency and a message is posted containing the new center frequency., git, 2014/06/26
- [Commit-gnuradio] [gnuradio] 17/23: replaced dynamic_ by static_cast; typechecking done before, git, 2014/06/26
- [Commit-gnuradio] [gnuradio] 02/23: cmake: Include GrBoost at the top level such that the correct default BOOST variables are set throughout the build. Because of the way CMake handles non-cached variables, each GR component (e.g., Volk) can change the BOOST variables for its particular needs without overriding these default values for other components., git, 2014/06/26
- [Commit-gnuradio] [gnuradio] 06/23: blocks.head: added callback to GRC definition, git, 2014/06/26
- [Commit-gnuradio] [gnuradio] 18/23: crc32_async: fix memory leak; coverity 1215946, git, 2014/06/26
- [Commit-gnuradio] [gnuradio] 23/23: build: removed some gcc warnings., git, 2014/06/26
- [Commit-gnuradio] [gnuradio] 21/23: Merge remote-tracking branch 'mmueller/blocks_grc_add_head_set_length_cb', git, 2014/06/26
- [Commit-gnuradio] [gnuradio] 20/23: Merge remote-tracking branch 'michaelld/boost_once', git, 2014/06/26