Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

assigned categories to all blocks without any #32

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions grc/baz_agc_xx.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<block>
<name>AGC (Baz)</name>
<key>baz_agc_xx</key>
<category>Level Controllers</category>
<import>import baz</import>
<make>baz.agc_$(type.fcn)($rate, $reference, $gain, $max_gain)</make>
<param>
Expand Down
1 change: 1 addition & 0 deletions grc/baz_delay.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<block>
<name>Variable Delay</name>
<key>baz_delay</key>
<category>Misc</category>
<import>import baz</import>
<make>baz.delay($type.size*$vlen, $delay)</make>
<callback>set_delay($delay)</callback>
Expand Down
1 change: 1 addition & 0 deletions grc/baz_message_callback.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<block>
<name>Message Callback</name>
<key>baz_message_callback</key>
<category>Message Tools</category>
<import>from baz import message_callback</import>

<make>message_callback.message_callback(msgq=$(id)_msgq_in,#slurp
Expand Down
1 change: 1 addition & 0 deletions grc/baz_message_relay.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<block>
<name>Message Relay</name>
<key>baz_message_relay</key>
<category>Message Tools</category>
<import>from baz import message_relay</import>

<make>message_relay.message_relay(tx_msgq=$(id)_msgq_out,rx_msgq=#slurp
Expand Down
1 change: 1 addition & 0 deletions grc/baz_swap_ff.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<block>
<name>Swap</name>
<key>swap_ff</key>
<category>Misc</category>
<import>import baz</import>
<make>baz.swap_ff($swap)</make>
<callback>set_swap($swap)</callback>
Expand Down
1 change: 1 addition & 0 deletions grc/baz_tcp_sink.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<block>
<name>TCP Sink (Baz)</name>
<key>baz_tcp_sink</key>
<category>Networking Tools</category>
<import>import baz</import>
<make>baz.tcp_sink(
itemsize=$type.size*$vlen,
Expand Down
1 change: 1 addition & 0 deletions grc/baz_tcp_source.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<block>
<name>TCP Source (Baz)</name>
<key>baz_tcp_source</key>
<category>Networking Tools</category>
<import>import baz</import>
<make>baz.tcp_source(
itemsize=$type.size*$vlen,
Expand Down
1 change: 1 addition & 0 deletions grc/baz_udp_sink.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<block>
<name>UDP Sink (Baz)</name>
<key>baz_udp_sink</key>
<category>Networking Tools</category>
<import>import baz</import>
<make>baz.udp_sink($type.size*$vlen, $ipaddr, $port, $psize, $eof, $borip)
#if $status_in()
Expand Down
1 change: 1 addition & 0 deletions grc/baz_udp_source.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<block>
<name>UDP Source (Baz)</name>
<key>baz_udp_source</key>
<category>Networking Tools</category>
<import>import baz</import>
<make>baz.udp_source($type.size*$vlen, $ipaddr, $port, $psize, $eof, $wait, $borip, $verbose)</make>
<callback>set_mtu($mtu)</callback>
Expand Down
1 change: 1 addition & 0 deletions grc/baz_xmlrpc_server.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<block>
<name>XMLRPC Server (Baz)</name>
<key>baz_xmlrpc_server</key>
<category>Misc</category>
<import>from baz import introspective_xmlrpc_server</import>
<import>import threading</import>
<make>introspective_xmlrpc_server.IntrospectiveXMLRPCServer(($addr, $port), allow_none=True, signatures=$sigs)
Expand Down
1 change: 1 addition & 0 deletions grc/gr_mpsk_receiver_debug_cc.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
<block>
<name>MPSK Receiver (Debug)</name>
<key>gr_mpsk_receiver_debug_cc</key>
<category>Debug Tools</category>
<import>from gnuradio import gr</import>
<make>gr.mpsk_receiver_cc($M, $theta, $alpha, $beta, $fmin, $fmax, $mu, $gain_mu, $omega, $gain_omega, $omega_relative_limit)</make>
<callback>set_alpha($alpha)</callback>
Expand Down