summaryrefslogtreecommitdiff
path: root/gr-blocks/include/gnuradio/blocks/message_debug.h
diff options
context:
space:
mode:
Diffstat (limited to 'gr-blocks/include/gnuradio/blocks/message_debug.h')
-rw-r--r--gr-blocks/include/gnuradio/blocks/message_debug.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/gr-blocks/include/gnuradio/blocks/message_debug.h b/gr-blocks/include/gnuradio/blocks/message_debug.h
index d2cfc59f24..14ded692f4 100644
--- a/gr-blocks/include/gnuradio/blocks/message_debug.h
+++ b/gr-blocks/include/gnuradio/blocks/message_debug.h
@@ -27,14 +27,13 @@ namespace blocks {
* The message debug block is used to capture and print or store
* messages as they are received. Any block that generates a
* message may connect that message port to one or more of the
- * three message input ports of this debug block. The message
+ * two message input ports of this debug block. The message
* ports are:
*
* \li print: prints the message directly to standard out.
* \li store: stores the message in an internal vector. May be
* access using the get_message function.
- * \li print_pdu: specifically designed to handle formatted PDUs
- * (see pdu.h).
+ * \li print_pdu: DEPRECATED! use print() for all printing
*/
class BLOCKS_API message_debug : virtual public block
{
@@ -43,9 +42,10 @@ public:
typedef std::shared_ptr<message_debug> sptr;
/*!
- * \brief Build the message debug block. It takes no parameters
- * and has three message ports: print, store, and
- * print_pdu.
+ * \brief Build the message debug block. It takes a single parameter that can be used
+ * to disable PDU vector printing and has two message ports: print and store.
+ *
+ * \param en_uvec Enable PDU Vector Printing.
*/
static sptr make(bool en_uvec = true);