diff options
author | Tom Rondeau <trondeau@vt.edu> | 2013-02-12 20:57:16 -0500 |
---|---|---|
committer | Tom Rondeau <trondeau@vt.edu> | 2013-02-12 20:57:16 -0500 |
commit | 02a6d1cf7966079a857ab198d633aea9401b6f17 (patch) | |
tree | b09a615ddea317eae70e7624489eac4dfbaac17d | |
parent | 5e16d322b03fe97dedbe718d8dc04017ddbd58cc (diff) |
core: fixed some typos in the PDU tag/stream and example.
-rw-r--r-- | gnuradio-core/src/examples/msg_passing/strobe.grc | 2 | ||||
-rw-r--r-- | grc/blocks/gr_pdu_to_tagged_stream.xml | 6 | ||||
-rw-r--r-- | grc/blocks/gr_tagged_stream_to_pdu.xml | 6 |
3 files changed, 7 insertions, 7 deletions
diff --git a/gnuradio-core/src/examples/msg_passing/strobe.grc b/gnuradio-core/src/examples/msg_passing/strobe.grc index 78c1786e21..ce97389782 100644 --- a/gnuradio-core/src/examples/msg_passing/strobe.grc +++ b/gnuradio-core/src/examples/msg_passing/strobe.grc @@ -159,7 +159,7 @@ </param> <param> <key>msg</key> - <value>pmt.pmtcons( pmt.PMT_NIL, pmt.make_u8vector(512,0) )</value> + <value>pmt.cons( pmt.PMT_NIL, pmt.make_u8vector(512,0) )</value> </param> <param> <key>period</key> diff --git a/grc/blocks/gr_pdu_to_tagged_stream.xml b/grc/blocks/gr_pdu_to_tagged_stream.xml index fc1c4d16a3..6d2fea97e7 100644 --- a/grc/blocks/gr_pdu_to_tagged_stream.xml +++ b/grc/blocks/gr_pdu_to_tagged_stream.xml @@ -16,17 +16,17 @@ <option> <name>Byte</name> <key>byte</key> - <opt>tv:gr.BYTE</opt> + <opt>tv:gr.pdu_byte</opt> </option> <option> <name>Complex</name> <key>complex</key> - <opt>tv:gr.COMPLEX</opt> + <opt>tv:gr.pdu_complex</opt> </option> <option> <name>Float</name> <key>float</key> - <opt>tv:gr.FLOAT</opt> + <opt>tv:gr.pdu_float</opt> </option> </param> <sink> diff --git a/grc/blocks/gr_tagged_stream_to_pdu.xml b/grc/blocks/gr_tagged_stream_to_pdu.xml index e70a016080..e2f754c9eb 100644 --- a/grc/blocks/gr_tagged_stream_to_pdu.xml +++ b/grc/blocks/gr_tagged_stream_to_pdu.xml @@ -16,17 +16,17 @@ <option> <name>Byte</name> <key>byte</key> - <opt>tv:gr.BYTE</opt> + <opt>tv:gr.pdu_byte</opt> </option> <option> <name>Complex</name> <key>complex</key> - <opt>tv:gr.COMPLEX</opt> + <opt>tv:gr.pdu_complex</opt> </option> <option> <name>Float</name> <key>float</key> - <opt>tv:gr.FLOAT</opt> + <opt>tv:gr.pdu_float</opt> </option> </param> <sink> |