diff options
Diffstat (limited to 'gr-digital')
-rw-r--r-- | gr-digital/python/grc_gnuradio/blks2/packet.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gr-digital/python/grc_gnuradio/blks2/packet.py b/gr-digital/python/grc_gnuradio/blks2/packet.py index ef79afde64..dc06544c19 100644 --- a/gr-digital/python/grc_gnuradio/blks2/packet.py +++ b/gr-digital/python/grc_gnuradio/blks2/packet.py @@ -107,6 +107,8 @@ class packet_encoder(gr.hier_block2): #connect self.connect(msg_source, self) + print "Warning: the blks2.packet_encoder block is deprecated." + def send_pkt(self, payload): """ Wrap the payload in a packet and push onto the message queue. @@ -184,6 +186,8 @@ class packet_decoder(gr.hier_block2): #start thread _packet_decoder_thread(msgq, callback) + print "Warning: the blks2.packet_decoder block is deprecated." + ################################################## ## Packet Mod for OFDM Mod and Packet Encoder ################################################## |