forked from osh/gr-pyqt
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding message head and message skip head blocks
- Loading branch information
Showing
7 changed files
with
150 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<?xml version="1.0"?> | ||
<block> | ||
<name>Message Head</name> | ||
<key>pyqt_head</key> | ||
<category>pyqt</category> | ||
<import>import pyqt</import> | ||
<make>pyqt.head($n)</make> | ||
|
||
<param> | ||
<name>N</name> | ||
<key>n</key> | ||
<value>10</value> | ||
<type>int</type> | ||
</param> | ||
|
||
<sink> | ||
<name>pdus</name> | ||
<type>message</type> | ||
<optional>1</optional> | ||
</sink> | ||
|
||
<source> | ||
<name>pdus</name> | ||
<type>message</type> | ||
<optional>1</optional> | ||
</source> | ||
</block> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<?xml version="1.0"?> | ||
<block> | ||
<name>Message Skip Head</name> | ||
<key>pyqt_skip_head</key> | ||
<category>pyqt</category> | ||
<import>import pyqt</import> | ||
<make>pyqt.skip_head($n)</make> | ||
|
||
<param> | ||
<name>N</name> | ||
<key>n</key> | ||
<value>10</value> | ||
<type>int</type> | ||
</param> | ||
|
||
<sink> | ||
<name>pdus</name> | ||
<type>message</type> | ||
<optional>1</optional> | ||
</sink> | ||
|
||
<source> | ||
<name>pdus</name> | ||
<type>message</type> | ||
<optional>1</optional> | ||
</source> | ||
</block> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
#!/usr/bin/env python | ||
# | ||
# Copyright 2014 Tim O'Shea | ||
# | ||
# This file is part of GNU Radio | ||
# | ||
# GNU Radio is free software; you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
# the Free Software Foundation; either version 3, or (at your option) | ||
# any later version. | ||
# | ||
# GNU Radio is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public License | ||
# along with GNU Radio; see the file COPYING. If not, write to | ||
# the Free Software Foundation, Inc., 51 Franklin Street, | ||
# Boston, MA 02110-1301, USA. | ||
# | ||
import numpy | ||
from gnuradio import gr; | ||
import pmt | ||
|
||
class head(gr.sync_block): | ||
def __init__(self, nitems): | ||
self.nitems = nitems | ||
gr.sync_block.__init__(self,"message_head",[],[]) | ||
self.message_port_register_in(pmt.intern("pdus")) | ||
self.message_port_register_out(pmt.intern("pdus")) | ||
self.set_msg_handler(pmt.intern("pdus"), self.handler) | ||
|
||
def handler(self, pdu): | ||
meta = pmt.car(pdu) | ||
vec = pmt.to_python(pmt.cdr(pdu)) | ||
vec = vec[0:self.nitems] | ||
self.message_port_pub(pmt.intern("pdus"), pmt.cons( meta, pmt.to_pmt(vec) ) ); | ||
|
||
def work(self, input_items, output_items): | ||
pass | ||
|
||
|
||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
#!/usr/bin/env python | ||
# | ||
# Copyright 2014 Tim O'Shea | ||
# | ||
# This file is part of GNU Radio | ||
# | ||
# GNU Radio is free software; you can redistribute it and/or modify | ||
# it under the terms of the GNU General Public License as published by | ||
# the Free Software Foundation; either version 3, or (at your option) | ||
# any later version. | ||
# | ||
# GNU Radio is distributed in the hope that it will be useful, | ||
# but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
# GNU General Public License for more details. | ||
# | ||
# You should have received a copy of the GNU General Public License | ||
# along with GNU Radio; see the file COPYING. If not, write to | ||
# the Free Software Foundation, Inc., 51 Franklin Street, | ||
# Boston, MA 02110-1301, USA. | ||
# | ||
import numpy | ||
from gnuradio import gr; | ||
import pmt | ||
|
||
class skip_head(gr.sync_block): | ||
def __init__(self, nitems): | ||
self.nitems = nitems | ||
gr.sync_block.__init__(self,"message_skip_head",[],[]) | ||
self.message_port_register_in(pmt.intern("pdus")) | ||
self.message_port_register_out(pmt.intern("pdus")) | ||
self.set_msg_handler(pmt.intern("pdus"), self.handler) | ||
|
||
def handler(self, pdu): | ||
meta = pmt.car(pdu) | ||
vec = pmt.to_python(pmt.cdr(pdu)) | ||
vec = vec[self.nitems:] | ||
self.message_port_pub(pmt.intern("pdus"), pmt.cons( meta, pmt.to_pmt(vec) ) ); | ||
|
||
def work(self, input_items, output_items): | ||
pass | ||
|
||
|
||
|
||
|